diff options
author | Profpatsch <mail@profpatsch.de> | 2021-01-29T14·44+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-31T11·10+0000 |
commit | ef743ffbb5f03b0503edc0ed6c569dd17f391289 (patch) | |
tree | 3f64373c54f038319d0439d453b2bbf9795c1653 /users/Profpatsch | |
parent | 5d44df3af65767e731c0dd239bd1d9664edbb361 (diff) |
fix(users/Profpatsch/lib): eprintenv should exec into prog r/2168
Change-Id: I2eab4ce24871121381011c1cfc8ef5e042502cb2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2450 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch')
-rw-r--r-- | users/Profpatsch/lib.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/lib.nix b/users/Profpatsch/lib.nix index 9215f5b19c77..05d931b841e5 100644 --- a/users/Profpatsch/lib.nix +++ b/users/Profpatsch/lib.nix @@ -22,7 +22,7 @@ let ]; eprintenv = depot.nix.writeExecline "eprintenv" { readNArgs = 1; } [ - "fdmove" "-c" "1" "2" bins.printenv "$1" + "fdmove" "-c" "1" "2" bins.printenv "$1" "$@" ]; in { |