agda: use exec in agdaWrapper
This commit is contained in:
parent
0266996a8d
commit
3b6de72836
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ let
|
||||||
# Makes a wrapper available to the user. Very useful in
|
# Makes a wrapper available to the user. Very useful in
|
||||||
# nix-shell where all dependencies are -i'd.
|
# nix-shell where all dependencies are -i'd.
|
||||||
agdaWrapper = writeShellScriptBin "agda" ''
|
agdaWrapper = writeShellScriptBin "agda" ''
|
||||||
${self.agdaWithArgs} "$@"
|
exec ${self.agdaWithArgs} "$@"
|
||||||
'';
|
'';
|
||||||
in [agdaWrapper] ++ self.buildDepends;
|
in [agdaWrapper] ++ self.buildDepends;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue