1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

buildGoPackage: Don't print blank lines

This commit is contained in:
William A. Kennington III 2015-05-18 15:27:52 -07:00
parent c2a85e04e8
commit 1dbd67ee82

View file

@ -80,7 +80,9 @@ go.stdenv.mkDerivation (
exit 1
fi
fi
echo "$OUT" >&2
if [ -n "$OUT" ]; then
echo "$OUT" >&2
fi
done)
fi