From 01888897b79a7186123f5ae57a307a4febf85399 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 2 Mar 2020 18:53:57 -0800 Subject: [PATCH] chore(ci): fix publish_all_packages.sh on travis --- utils/publish_all_packages.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/publish_all_packages.sh b/utils/publish_all_packages.sh index 73e28618d4681..053fbf1213bf8 100755 --- a/utils/publish_all_packages.sh +++ b/utils/publish_all_packages.sh @@ -73,7 +73,8 @@ elif [[ $1 == "--tip-of-tree" ]]; then echo "Did not find \$CI env - cannot publish tip-of-tree release not from CI" exit 1 fi - npm run clean + # We don't do `npm run clean` here since travis deploy will remove node + # modules, and our `npm run clean` relies on `rimraf` to be installed. npm publish . --tag="next" npm publish packages/playwright-firefox --tag="next" npm publish packages/playwright-webkit --tag="next"