about summary refs log tree commit diff
path: root/users/Profpatsch/lib.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-01-29T14·44+0100
committerProfpatsch <mail@profpatsch.de>2021-01-31T11·10+0000
commitef743ffbb5f03b0503edc0ed6c569dd17f391289 (patch)
tree3f64373c54f038319d0439d453b2bbf9795c1653 /users/Profpatsch/lib.nix
parent5d44df3af65767e731c0dd239bd1d9664edbb361 (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/lib.nix')
-rw-r--r--users/Profpatsch/lib.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/lib.nix b/users/Profpatsch/lib.nix
index 9215f5b19c..05d931b841 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 {