Skip to content

Commit

Permalink
Merge pull request #17595 from ttuegel/stage-1
Browse files Browse the repository at this point in the history
nixos/stage-1: fix antiquotation
  • Loading branch information
abbradar committed Aug 8, 2016
2 parents ca5b336 + ee36bb8 commit d754407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/system/boot/stage-1.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let
[ ! -f "$out/lib/$(basename $LIB)" ] && cp -pdv $LIB $out/lib
while [ "$(readlink $LIB)" != "" ]; do
LINK="$(readlink $LIB)"
if [ "${LINK:0:1}" != "/" ]; then
if [ "''${LINK:0:1}" != "/" ]; then
LINK="$(dirname $LIB)/$LINK"
fi
LIB="$LINK"
Expand Down

0 comments on commit d754407

Please sign in to comment.