diff options
-rwxr-xr-x | scripts/build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build b/scripts/build index 1e53436..fb64dab 100755 --- a/scripts/build +++ b/scripts/build @@ -146,13 +146,13 @@ fi ## # Check to see if we are wrapping a sub-command # FIXME support custom commands -BUILD_COMMAND= +BUILDER_COMMAND= if [ -f "${1}" ]; then case "${1}" in (*build-*) - BUILD_COMMAND="${1}" + BUILDER_COMMAND="${1}" shift - . "${BUILD_COMMAND}" + . "${BUILDER_COMMAND}" # exit with the exit status of the last command from within the # sub-script. This is normal shell behavior, we are just # making it explicit. |