This commit is contained in:
Tony Tkáčik 2019-05-03 13:14:55 +02:00
parent 8dce602b88
commit fc412d05cd

View file

@ -14,14 +14,14 @@ function perform_clone_or_pull {
if [ ! -e "$target/.git" ]; then
git clone "$REPO" "$target"
fi
(
cd "$target"
echo -n "Working directory: "
pwd
ls -la
git fetch
git checkout origin/$BRANCH
)
echo "Working copy checked out";
}