Skip to content

Commit

Permalink
fix invalid antiquotations
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Aug 8, 2016
1 parent 2faa207 commit 3fca2ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/tools/misc/hydra/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ in releaseTools.nixBuild rec {

preCheck = ''
patchShebangs .
export LOGNAME=${LOGNAME:-foo}
export LOGNAME=''${LOGNAME:-foo}
'';

postInstall = ''
Expand Down
2 changes: 1 addition & 1 deletion pkgs/servers/amqp/rabbitmq-server/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 3fca2ce

Please sign in to comment.