mirror of
https://github.com/microsoft/playwright-java.git
synced 2025-09-08 21:01:00 +00:00
chore: set cli version to 0.170.0 (#140)
This commit is contained in:
parent
d91e865e62
commit
8da7660d83
@ -1 +1 @@
|
||||
0.170.0-next.1608058598043
|
||||
0.170.0
|
||||
|
@ -30,8 +30,12 @@ do
|
||||
cd $PLATFORM
|
||||
echo "Downloading driver for $PLATFORM to $(pwd)"
|
||||
|
||||
curl -O https://playwright.azureedge.net/builds/cli/next/${FILE_NAME}
|
||||
unzip ${FILE_NAME} -d .
|
||||
URL=https://playwright.azureedge.net/builds/cli
|
||||
if [[ $CLI_VERSION == *"next"* ]]; then
|
||||
URL=$URL/next
|
||||
fi
|
||||
curl -O $URL/$FILE_NAME
|
||||
unzip $FILE_NAME -d .
|
||||
rm $FILE_NAME
|
||||
|
||||
cd -
|
||||
|
@ -52,7 +52,12 @@ cd $PLATFORM
|
||||
FILE_NAME=$FILE_PREFIX-$PLATFORM.zip
|
||||
echo "Downloading driver for $PLATFORM to $(pwd)"
|
||||
|
||||
curl -O https://playwright.azureedge.net/builds/cli/next/${FILE_NAME}
|
||||
URL=https://playwright.azureedge.net/builds/cli
|
||||
if [[ $CLI_VERSION == *"next"* ]]; then
|
||||
URL=$URL/next
|
||||
fi
|
||||
curl -O $URL/$FILE_NAME
|
||||
|
||||
unzip ${FILE_NAME} -d .
|
||||
rm $FILE_NAME
|
||||
./playwright-cli install
|
||||
|
Loading…
x
Reference in New Issue
Block a user