diff options
author | tilpner | 2018-09-23 23:26:57 +0200 |
---|---|---|
committer | tilpner | 2018-09-23 23:26:57 +0200 |
commit | 9256a12173b6d60eb13d55c67db01985c0a96526 (patch) | |
tree | 88a8a20a459fc2ae5d16ead90a1714c1959af263 | |
parent | 02b1d2bc9dbd4af3bdb7c8059968836c918242e9 (diff) | |
download | qeval-9256a12173b6d60eb13d55c67db01985c0a96526.tar.gz qeval-9256a12173b6d60eb13d55c67db01985c0a96526.tar.xz qeval-9256a12173b6d60eb13d55c67db01985c0a96526.zip |
Call /input instead of $1
-rw-r--r-- | evaluators.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evaluators.nix b/evaluators.nix index 9a78b0c..a88fc56 100644 --- a/evaluators.nix +++ b/evaluators.nix @@ -256,7 +256,7 @@ let ash = prepareJob { name = "ash"; command = '' - /bin/sh "$1" + /bin/sh /input ''; testInput = "echo success"; |