The `"${@}"` will expand spaces correctly into each parameter.
The double quotes are requires as `${@}` will not work as expected.
return 0
}
-main ${*}
+main "${@}"
unset bootstrap_cleanup
}
-bootstrap_main ${*}
+bootstrap_main "${@}"
done
}
-main "${1}" "${2}"
+main "${@}"
unset generate_ctags_cleanup
}
-main ${*}
+main "${@}"
unset install_cleanup
}
-install_main ${*}
+install_main "${@}"
unset package_cleanup
}
-package_main ${*}
+package_main "${@}"
unset test_cleanup
}
-test_main ${*}
+test_main "${@}"