diff options
author | Matt Knight <mattnite@protonmail.com> | 2021-03-06 15:21:18 -0800 |
---|---|---|
committer | Matt Knight <mattnite@protonmail.com> | 2021-03-06 15:21:18 -0800 |
commit | 1f85c2d27269517742b6159e8f4dd8f6c7da3a25 (patch) | |
tree | ffb7a54ebda0aa3c915221e95b523b570e927705 | |
parent | 6861626b515cace7917a65eddfe8a74605084cd2 (diff) | |
download | ziglings-1f85c2d27269517742b6159e8f4dd8f6c7da3a25.tar.gz ziglings-1f85c2d27269517742b6159e8f4dd8f6c7da3a25.tar.bz2 ziglings-1f85c2d27269517742b6159e8f4dd8f6c7da3a25.tar.xz ziglings-1f85c2d27269517742b6159e8f4dd8f6c7da3a25.zip |
need to change shebang to bash because we're using bashisms
-rwxr-xr-x | patches/eowyn.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/patches/eowyn.sh b/patches/eowyn.sh index 55e6f8a..6f8ef8d 100755 --- a/patches/eowyn.sh +++ b/patches/eowyn.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # "I will be a shieldmaiden no longer, # nor vie with the great Riders, nor @@ -13,8 +13,6 @@ # to convalesce in the healed directory. # -set -e - # We run from the patches dir. Go there now if not already. cd $(dirname $(realpath $0)) pwd # Show it upon the screen so all shall be made apparent. |