summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-05-30 08:46:04 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-05-30 11:39:51 -0400
commite82b5cfd25ea3164e33ac584b48e51f48f0c95c0 (patch)
tree0586171d9c9c64235c1dcf5b660ac09a091169d5
parent96d9b46b7b150cd8a2f7c55721706d4ef994e97a (diff)
test/testenv: Don't "eval" the arguments; treat them as real args
This means you now need to use 'bash -c' to do things like pipelines.
-rwxr-xr-xtest/testenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testenv b/test/testenv
index 29afa30..36ae826 100755
--- a/test/testenv
+++ b/test/testenv
@@ -68,5 +68,5 @@
chmod 755 "$destdir/usr/bin/testsudo"
# Run the tests
- eval "$@"
+ command -- "$@"
}