diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2019-04-03 16:21:51 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2019-04-03 16:21:51 -0500 |
| commit | d75cee4996af64336c7823968c8cdb475b5c5aff (patch) | |
| tree | ece14d91c77f5f9295f9035149fc63f3f7bf6f54 | |
| parent | 458eea04d31f749c0494cf78d040bf8e80ddf9da (diff) | |
Fix unbound variable (again)
| -rwxr-xr-x | scripts/wasabi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wasabi.sh b/scripts/wasabi.sh index 0613ffdd..a322b6c0 100755 --- a/scripts/wasabi.sh +++ b/scripts/wasabi.sh @@ -56,7 +56,7 @@ if [[ -n $ARCHIVE_FULL ]]; then export ARCHIVE_FULL_ARG="-f ${ARCHIVE_FULL}" fi -if [[ -v $EXECUTABLE ]]; then +if [[ -v EXECUTABLE ]]; then export EXECUTABLE_ARG="-e ${EXECUTABLE}" fi |
