Skip to content

Commit

Permalink
use different bash path
Browse files Browse the repository at this point in the history
use as default #!/bin/bash as path instead of #!/usr/bin/env bash or #! bash
  • Loading branch information
BJNFNE committed Aug 6, 2024
1 parent e12df73 commit b896a41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/rip_media_station_iso.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! bash
#!/bin/bash

# This script rips a Media Station ISO to a directory whose name should uniquely
# identify the edition of the title in a human-readable fashion. It is designed to
Expand Down
2 changes: 1 addition & 1 deletion utils/GetFileHashesFromISO.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

# DEFINE ERROR HANDLERS.
set -e
Expand Down
2 changes: 1 addition & 1 deletion utils/ImageGoldenMaster.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash

set -e

Expand Down

0 comments on commit b896a41

Please sign in to comment.