From 2f7f58b2c2f3c8652d4151af083f3bb60f5a3ee0 Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Wed, 16 Feb 2022 19:35:00 +0100 Subject: [PATCH] Pass arguments of bootstrap to install.sh --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 0c67001..1fd9393 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -24,11 +24,11 @@ function main() { pushd -q "${tmpdir}" cloneMacOSSystemRepo cloneZSHLibRepo - sudo "${tmpdir}/install.sh" + sudo "${tmpdir}/install.sh" "$@" popd -q } if [[ "${ZSH_EVAL_CONTEXT}" == toplevel ]]; then _DIR="${0:A:h}" - main + main "$@" fi