From 45f651ab0045e2ae03be91fd156e627b2f999a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohnic=CC=81?= Date: Mon, 1 Apr 2013 03:11:46 +0200 Subject: [PATCH] hack around the hack around bash `echo` --- test/exec.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/exec.bats b/test/exec.bats index 1eaef7d7..97a11565 100644 --- a/test/exec.bats +++ b/test/exec.bats @@ -32,7 +32,7 @@ create_executable() { echo \$0 while [[ \$# -gt 0 ]]; do # hack to avoid bash builtin echo which can't output '-e' - \$(which echo) \$1 + cat <<<\"\$1\" shift 1 done "