From 1129a4bdd498f930ec33bea0a8e43794d085ec26 Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Wed, 16 Feb 2022 20:19:03 +0100 Subject: [PATCH] Add comments to bootstrap.sh steps --- bootstrap.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index 055272b..182f0e8 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -30,9 +30,16 @@ function main() { local tmpdir="`mktemp -d -t 'macos-system'`" isDebug || trap "rm -fr -- '${tmpdir}'; return" INT TERM EXIT pushd -q "${tmpdir}" + printf 'Installing macos-system...' cloneMacOSSystemRepo + printf 'done\n' + printf 'Installing zshlib...' cloneZSHLibRepo + printf 'done\n' + printf 'Ensure docopts is installed...' ensureDocopts + printf 'done\n' + printf 'Will now run the installer\n.' sudo "${tmpdir}/install.sh" "$@" popd -q }