mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-21 06:22:59 +00:00
Bugfix: Don't unwind the ./beta symlink
This commit is contained in:
parent
7a346e3deb
commit
4e3009a4df
1 changed files with 1 additions and 1 deletions
2
build
2
build
|
@ -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 $?;
|
||||
|
|
Loading…
Reference in a new issue