Skip to content

Commit 2a5e22e

Browse files
scripts() fix prepare script (install all deps)
1 parent ff2e310 commit 2a5e22e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/prepare.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 1. Install all dependencies
2-
for D in integration/*; do [ -d "${D}" ] && npm i; done
2+
for D in integration/*/; do sh -c "cd ${D} && npm i"; done
33

44
# 2. Build fresh packages and move them to sample and integration directories
55
npm run build:dev &>/dev/null

0 commit comments

Comments
 (0)