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:
parent
436abf682f
commit
4fe4b9193a
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue