Bugfix: Don't unwind the ./beta symlink

This commit is contained in:
Starbeamrainbowlabs 2020-03-08 18:16:21 +00:00
parent 7a346e3deb
commit 4e3009a4df
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

2
build
View File

@ -340,7 +340,7 @@ task_deploy() {
subtask_end $?;
subtask_begin "Unwinding symlinks";
find "${temp_dir}" -type l -exec bash -c 'ln -f "$(readlink -m "$0")" "$0"' {} \;
find "${temp_dir}" -type l -not -path "./beta" -exec bash -c 'ln -f "$(readlink -m "$0")" "$0"' {} \;
subtask_end $?;
task_end $?;