Skip to content

Commit 8afd8b7

Browse files
committed
Fix more misquoting bugs in relink_symlinks (broke qt5-qttools)
1 parent 0e42206 commit 8afd8b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

relink_symlinks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ while read symlink; do
3636
# ln will try follow symlink if source exists as symlink, so let's move
3737
# it out of the way first, then back afterwards
3838
stat "$path" &> /dev/null && mv "$path" "$path.origlink"
39-
output="$(ln -svr \"$path\" \"$symlink\" 2>&1)"
39+
output="$(ln -svr "$path" "$symlink" 2>&1)"
4040
stat "$path.origlink" &> /dev/null && mv "$path.origlink" "$path"
4141
if ! stat "$symlink" &> /dev/null; then
4242
printf '%s\n' "symlink relativization failed:" >&2

0 commit comments

Comments
 (0)