From 2aa2d86cc5507a741523b9ab6ca94d804885486a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 25 Apr 2017 13:39:07 +0200 Subject: [PATCH] Opps, other commit messages came from other projects. This replaces backticks with parentheses again: $(foo --bar) and not `foo --bar`. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- commit-jprojects.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commit-jprojects.sh b/commit-jprojects.sh index 802ea6a..99f58bd 100755 --- a/commit-jprojects.sh +++ b/commit-jprojects.sh @@ -14,7 +14,7 @@ for project in ${LIST}; do fi cd "${JPROJECTS_HOME}/${project}" || exit 255 - CHECK_CHANGES=`git commit -a --dry-run | grep "Changes to be committed:"` + CHECK_CHANGES=$(git commit -a --dry-run | grep "Changes to be committed:") if [ -n "${CHECK_CHANGES}" ] then -- 2.30.2