more portable shebang

This commit is contained in:
Matthias Kretschmann 2015-07-26 20:27:32 +02:00
parent f7ccb0fa50
commit 4a261456bc
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# #
# Pull in changes and make new symlinks # Pull in changes and make new symlinks
# #
@ -47,7 +47,7 @@ echo "$(tput sgr0)" # reset
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
for file in $files; do for file in $files; do
rm ~/.$file rm ~/.$file
done done
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# #
@ -59,4 +59,4 @@ rvm cleanup all
echo "$(tput setaf 64)" # green echo "$(tput setaf 64)" # green
echo "-------------------------------" echo "-------------------------------"
echo " ✓ all done" echo " ✓ all done"
echo "$(tput sgr0)" # reset echo "$(tput sgr0)" # reset