3
0
Fork 0
forked from mirrors/nixpkgs

fix invalid antiquotations

See https://github.com/NixOS/nix/issues/1017
This commit is contained in:
Nikolay Amiantov 2016-08-08 18:01:18 +03:00
parent 2faa207701
commit 3fca2ce204
2 changed files with 2 additions and 2 deletions

View file

@ -118,7 +118,7 @@ in releaseTools.nixBuild rec {
preCheck = ''
patchShebangs .
export LOGNAME=${LOGNAME:-foo}
export LOGNAME=''${LOGNAME:-foo}
'';
postInstall = ''

View file

@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
postInstall =
''
echo 'PATH=${erlang}/bin:${PATH:+:}$PATH' >> $out/sbin/rabbitmq-env
echo 'PATH=${erlang}/bin:''${PATH:+:}$PATH' >> $out/sbin/rabbitmq-env
''; # */
meta = {