From 7da1d9fadda752c1b072200bd56623c9f9521201 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 26 Jun 2015 16:48:52 +0100 Subject: [PATCH] wrap TRAVIS_COMMIT variable in curlies for consistency --- tools/merge-development-with-master.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/merge-development-with-master.sh b/tools/merge-development-with-master.sh index 532c95816c..84015f5133 100755 --- a/tools/merge-development-with-master.sh +++ b/tools/merge-development-with-master.sh @@ -6,5 +6,5 @@ if [ "$TRAVIS_BRANCH" != "development" ]; then fi git checkout master -git merge "$TRAVIS_COMMIT" +git merge "${TRAVIS_COMMIT}" git push "https://${GH_TOKEN}@github.com/babel/babel"