Compare commits

...

2 Commits

Author SHA1 Message Date
72b0ef8b11 Merge branch 'dev' 2022-11-23 19:30:26 +01:00
3aeac81cf4 Fix wrong path in clone 2022-11-23 19:30:22 +01:00

View File

@ -16,7 +16,7 @@ repositoryFolder="$WORKDIR/.build/repository"
# --- SOURCES ---
# Get sources locally
if ! [ -d "$repositoryFolder" ]; then
git clone "${GIT_REPOSITORY}" .
git clone "${GIT_REPOSITORY}" "$repositoryFolder"
cloned=True
fi