fix „do not build utils.js“

Test does not know the ==-Parameter. It only accepts =.

For better style use  around variable to evade problems when the variable contains spaces
This commit is contained in:
Ranlvor 2018-02-11 19:56:08 +01:00
parent 436abf682f
commit 4fe4b9193a
Signed by untrusted user who does not match committer: Ranlvor
GPG key ID: 5E12D04750EF6F8E

View file

@ -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