about summary refs log tree commit diff
path: root/pkgs/profpatsch/execline
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/profpatsch/execline')
-rw-r--r--pkgs/profpatsch/execline/write-execline.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/profpatsch/execline/write-execline.nix b/pkgs/profpatsch/execline/write-execline.nix
index 52c72ed5..c2128ea3 100644
--- a/pkgs/profpatsch/execline/write-execline.nix
+++ b/pkgs/profpatsch/execline/write-execline.nix
@@ -6,8 +6,7 @@ let
   # Everything is escaped correctly.
   # TODO upstream into nixpkgs
   writeExeclineCommon = writer: name: { readNArgs ? 0 }: argList: writer name ''
-    #!${execlineb-with-builtins}/bin/execlineb -s${toString readNArgs}
-    export EXECLINE_STRICT 2
+    #!${execlineb-with-builtins}/bin/execlineb -Ws${toString readNArgs}
     ${escape.escapeExecline argList}
   '';
   writeExecline = writeExeclineCommon pkgs.writeScript;