Skip to content

Commit

Permalink
firefoxWrapper: fix typo
Browse files Browse the repository at this point in the history
Accidentally tried to hardlink a directory! Should have been `ln -s` all
along. Affects non-Firefox browsers that use firefoxWrapper.
  • Loading branch information
ttuegel committed May 18, 2015
1 parent 5b7837c commit 04622fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/networking/browsers/firefox/wrapper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ stdenv.mkDerivation {
if [ -e "${browser}/share/icons" ]; then
mkdir -p "$out/share"
ln "${browser}/share/icons" "$out/share/icons"
ln -s "${browser}/share/icons" "$out/share/icons"
else
mkdir -p "$out/share/icons/hicolor/128x128/apps"
ln -s "$out/lib/$libdirbasename/browser/icons/mozicon128.png" \
Expand Down

0 comments on commit 04622fe

Please sign in to comment.