Skip to content

Commit 0188889

Browse files
committed
chore(ci): fix publish_all_packages.sh on travis
1 parent 64e5e21 commit 0188889

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/publish_all_packages.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ elif [[ $1 == "--tip-of-tree" ]]; then
7373
echo "Did not find \$CI env - cannot publish tip-of-tree release not from CI"
7474
exit 1
7575
fi
76-
npm run clean
76+
# We don't do `npm run clean` here since travis deploy will remove node
77+
# modules, and our `npm run clean` relies on `rimraf` to be installed.
7778
npm publish . --tag="next"
7879
npm publish packages/playwright-firefox --tag="next"
7980
npm publish packages/playwright-webkit --tag="next"

0 commit comments

Comments
 (0)