Skip to content

Commit

Permalink
We start each script with #!/usr/bin/env bash since that's the most…
Browse files Browse the repository at this point in the history
… common.
  • Loading branch information
sauterp committed May 24, 2023
1 parent 926587a commit ff04a1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chatgpt.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

GLOBIGNORE="*"

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
Expand Down
2 changes: 1 addition & 1 deletion internal_dev/debmaker.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash
###############################################################################
# Purpose: The purpose of this script is to simply generate a .deb file.
# Once the .deb file is generated a copy is moved to /tmp.
Expand Down

0 comments on commit ff04a1a

Please sign in to comment.