This commit is contained in:
Tony Tkáčik 2019-05-03 13:12:41 +02:00
parent d8790046a4
commit aedcbae79c

View file

@ -12,7 +12,7 @@ function perform_clone_or_pull {
target="$1";
echo "Checking out working copy to remote: $target"
if [ ! -e "$target/.git" ]; then
git clone "$REPO" "$target";
git clone "$REPO" "$target"
fi
(
cd "$target"