summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index d064d16..b579309 100755
--- a/build
+++ b/build
@@ -79,13 +79,13 @@ if [ $# -gt 1 ]; then
;;
all)
for option in $(listoptions "${mode}"); do
- "${build}"/"${mode}"/"${option}" "$@"
+ "${build}"/"${mode}"/"${option}" $@
done
;;
*)
if [ -d "${build}"/"${mode}"/ ]; then
if [ -f "${build}"/"${mode}"/"${option}" ]; then
- "${build}"/"${mode}"/"${option}" "$@"
+ "${build}"/"${mode}"/"${option}" $@
else
help
die "Invalid option for '${mode}'. See './build ${mode} list'."