1
0
Fork 0

home-manger: fix syntax error for double quotes in linux.nix

This commit is contained in:
Pratham Patel 2024-03-18 21:16:07 +05:30
parent b46bfc8772
commit 5ee8575bac
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ in
pushd "$EXTRA_BIN_PATH"
for deb_bin in ${pkgs.binutils}/bin/* ${pkgs.rpm}/bin/*; do
ln -s "$deb_bin" "$(basename $deb_bin")
ln -s "$deb_bin" "$(basename "$deb_bin")"
done
popd
'';