Skip to content

Commit a55b5bb

Browse files
committed
Only install bower when it is not already installed
1 parent e8ccaec commit a55b5bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core-tests/test-everything.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
set -e
44

5-
npm install -g bower
5+
if ! type bower ; then
6+
npm install -g bower
7+
fi
68

79
bower i purescript-prelude \
810
purescript-eff \

0 commit comments

Comments
 (0)