Skip to content

Commit

Permalink
Avoid hard coded interpreter path (#143)
Browse files Browse the repository at this point in the history
`/usr/bin/bash` doesn’t necessarily exist. For improved portability, use
`/usr/bin/env` to detect `bash` in the current environment.
  • Loading branch information
AndrewKvalheim authored May 17, 2024
1 parent cf9dd25 commit a04b8cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lch.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash

rm dist/favicon.ico
mv dist/favicon-lch.ico dist/favicon.ico

0 comments on commit a04b8cb

Please sign in to comment.