summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2011-07-21 17:51:01 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2011-07-21 17:51:01 +0100
commit634d471b7ba29e1942807bf0123aa98bd03108ce (patch)
treec9dc312b3afead21f8afd7f310b0fbfa129d738a
parent591f2bf86d5eb9ce6fbe962251b0873e68aea6d3 (diff)
downloadrabbitmq-server-634d471b7ba29e1942807bf0123aa98bd03108ce.tar.gz
don't use echo -e
I don't want to risk breaking something with that right now. I'll test and file another bug if it's safe.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc903147..d8ef058e 100644
--- a/Makefile
+++ b/Makefile
@@ -163,7 +163,7 @@ run-node: all
run-tests: all
OUT=$$(echo "rabbit_tests:all_tests()." | $(ERL_CALL)) ; \
- echo -e $$OUT ; echo $$OUT | grep '^{ok, passed}$$' > /dev/null
+ echo $$OUT ; echo $$OUT | grep '^{ok, passed}$$' > /dev/null
start-background-node:
$(BASIC_SCRIPT_ENVIRONMENT_SETTINGS) \