From 1c415f34db5675266044ef4985fa9f5799e0fa90 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 2 Jun 2018 13:22:33 +0200 Subject: [PATCH] setup.sh: use proper quoting for printf format --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index ce47802..d2a3815 100755 --- a/setup.sh +++ b/setup.sh @@ -3,7 +3,7 @@ # Runs setup.sh in all configuration directories. Must be run in the main # configuration directory. -# Copyright (C) 2009-2013 Simon Ruderich +# Copyright (C) 2009-2018 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ for path in */setup.sh; do project=`printf '%s' "$path" | sed 's|/setup.sh$||'` - printf "running setup.sh in '%s'\n" "$project" + printf 'running setup.sh in "%s"\n' "$project" ( cd "$project" && ./setup.sh >/dev/null ) || { printf '%s/setup.sh failed\n' "$project" >&2 exit 1 -- 2.43.2