From 45a9c31d5d915010deb6d8073fe22cf8c10f12de Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 30 Oct 2017 09:44:52 -0700 Subject: treewide: Get rid of "echo -n", and add a test to prevent regression. "echo -n" is not POSIX and has spotty support in shells. CC: Timothy Redaelli CC: Flavio Leitner Signed-off-by: Ben Pfaff --- tutorial/ovs-sandbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tutorial') diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox index 7ae8cdb8a..1632ad15d 100755 --- a/tutorial/ovs-sandbox +++ b/tutorial/ovs-sandbox @@ -385,7 +385,7 @@ sleep 0.1 #Wait for ovsdb-server to finish launching. if test ! -e "$sandbox"/db.sock; then - echo -n "Waiting for ovsdb-server to start..." + printf "Waiting for ovsdb-server to start..." while test ! -e "$sandbox"/db.sock; do sleep 1; done -- cgit v1.2.1