Skip to content

Commit

Permalink
Switched check_errors.sh script to use the sh interpreter rather than…
Browse files Browse the repository at this point in the history
… bash.
  • Loading branch information
gmartin82 committed Oct 24, 2024
1 parent a106f83 commit 5b151cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nm/check_errors.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

if [ ! -s $1 ]; then
echo 'Command succeeded with no stderr output.'
Expand Down
2 changes: 1 addition & 1 deletion objcopy/check_errors.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

if [ ! -s $1 ]; then
echo 'Command succeeded with no stderr output.'
Expand Down

0 comments on commit 5b151cd

Please sign in to comment.