Skip to content

Commit e920730

Browse files
authored
Merge pull request #4 from crabdancing/fix-accidental-path-split-2
fix accidental path split
2 parents ef76ff7 + daf1241 commit e920730

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup-hook.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ makeSetupHook
6161
${
6262
if drv.passthru.mutableInstall then
6363
''
64-
cp -Lr ${drv} ${dest}
65-
chmod -R +w ${dest}
64+
cp -Lr "${drv}" "${dest}"
65+
chmod -R +w "${dest}"
6666
''
6767
else
68-
''ln -s ${drv} ${dest}''
68+
''ln -s "${drv}" "${dest}"''
6969
}
7070
''
7171
) finalDeps;

0 commit comments

Comments
 (0)