From a57f26f2c62805b9e61719361ca17ccf53c897ad Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 29 Aug 2015 23:47:29 -0400 Subject: all scripts: general fixes and clean up --- (limited to 'build') diff --git a/build b/build index 0ddb8fe..8ee4d74 100755 --- a/build +++ b/build @@ -52,10 +52,10 @@ if [ -d "${build}/${mode}" ]; then if [ "${option}" = "list" ]; then printf "Available options for '%s' are:\nall\n%s\n\n" "${mode}" "${availableoptions}" elif [ -f "${build}/${mode}/${option}" ]; then - ${build}/${mode}/${option} "$@" + "${build}/${mode}/${option}" "$@" elif [ "${option}" = "all" ]; then for option in ${availableoptions}; do - ${build}/${mode}/${option} "$@" + "${build}/${mode}/${option}" "$@" done else printf "Invalid option for '%s'. Available options are:\nall\n%s\n\n" "${mode}" "${availableoptions}" -- cgit v0.9.1