Clone repos with symlinks enabled

This commit is contained in:
Martchus 2023-06-09 18:01:09 +02:00
parent 22286b8d46
commit 3a51434528
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ for dir in "${!repo_names[@]}"; do
[[ -d ../$dir/.git ]] && continue
echo "==> Cloning $dir"
repo=${repo_names[$dir]:-$dir}
git -C .. clone "git@github.com:Martchus/$repo.git" "$dir"
git -C .. clone -c core.symlinks=true "git@github.com:Martchus/$repo.git" "$dir"
done
# ensure all repositories are up-to-date