From 796bf57aecf57c92d9302ca5e2d8c3f891095d4d Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Sun, 7 May 2023 22:21:59 -0700 Subject: [PATCH] fixed repo clone function array access --- extras/Slipstream.install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extras/Slipstream.install b/extras/Slipstream.install index 1b9042f..ac5eee7 100755 --- a/extras/Slipstream.install +++ b/extras/Slipstream.install @@ -148,7 +148,7 @@ install-file(){ fi } -install-dir() { +install-dir(){ local _source="$1" local _destination="$2" installed_dirs+=("$_source -> $_destination") @@ -231,8 +231,8 @@ install(){ fi run mkdir -p $installdir pushd $installdir - for repo in $repo_packages ; do - run clone-repo $repo + for repo in ${repo_packages[@]} ; do + clone-repo $repo done popd pushd $installdir/Proteus