From 4fe4b9193a90948866a08cf81b96eb094374f007 Mon Sep 17 00:00:00 2001 From: Ranlvor Date: Sun, 11 Feb 2018 19:56:08 +0100 Subject: [PATCH] =?UTF-8?q?fix=20=E2=80=9Edo=20not=20build=20utils.js?= =?UTF-8?q?=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test does not know the ==-Parameter. It only accepts =. For better style use around variable to evade problems when the variable contains spaces --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index 3831408..4a4405f 100755 --- a/travis.sh +++ b/travis.sh @@ -1,7 +1,7 @@ #!/bin/sh -e yarn lint for conf in $(ls config/); do - if [ $conf == "utils.js" ]; then + if [ "$conf" = "utils.js" ]; then continue fi yarn build $conf