fixed repo clone function array access
This commit is contained in:
parent
3342b42de7
commit
796bf57aec
1 changed files with 3 additions and 3 deletions
|
|
@ -148,7 +148,7 @@ install-file(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
install-dir() {
|
install-dir(){
|
||||||
local _source="$1"
|
local _source="$1"
|
||||||
local _destination="$2"
|
local _destination="$2"
|
||||||
installed_dirs+=("$_source -> $_destination")
|
installed_dirs+=("$_source -> $_destination")
|
||||||
|
|
@ -231,8 +231,8 @@ install(){
|
||||||
fi
|
fi
|
||||||
run mkdir -p $installdir
|
run mkdir -p $installdir
|
||||||
pushd $installdir
|
pushd $installdir
|
||||||
for repo in $repo_packages ; do
|
for repo in ${repo_packages[@]} ; do
|
||||||
run clone-repo $repo
|
clone-repo $repo
|
||||||
done
|
done
|
||||||
popd
|
popd
|
||||||
pushd $installdir/Proteus
|
pushd $installdir/Proteus
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue