mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
14 lines
323 B
Bash
14 lines
323 B
Bash
|
set -e
|
||
|
|
||
|
if [ -e ./FIREFOX_SHA ]; then
|
||
|
echo Checking Juggler root - OK
|
||
|
else
|
||
|
echo Please run this script from the Juggler root
|
||
|
exit 1;
|
||
|
fi
|
||
|
cd firefox/obj-x86_64-apple-darwin17.7.0/dist/
|
||
|
zip -r firefox-mac.zip firefox
|
||
|
mv firefox-mac.zip ../../../
|
||
|
cd -
|
||
|
gsutil mv firefox-mac.zip gs://juggler-builds/$(git rev-parse HEAD)/
|