diff options
author | Mark Ferrell <major@homeonderanged.org> | 2012-04-24 16:13:07 -0500 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2012-04-24 16:13:07 -0500 |
commit | a9817fc5244faad68676571b1b7faafee46d3bd9 (patch) | |
tree | 62473ecfeb1ea0d64c7f2ba6cbddd0a956f9b6a8 | |
parent | 726de5606cd41a9a5dd25c70263dac53368ea6a0 (diff) |
Rename BUILD_COMMAND variable to BUILDER_COMMAND
* Simply bring the variable inline with variable naming convention.
-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. |