We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 077e8f6 commit cc2d4faCopy full SHA for cc2d4fa
scripts/CLI_VERSION
@@ -1 +1 @@
1
-0.170.0
+0.171.0-1608602762905-6aa14d3
scripts/download_driver_for_all_platforms.sh
@@ -31,10 +31,12 @@ do
31
echo "Downloading driver for $PLATFORM to $(pwd)"
32
33
URL=https://playwright.azureedge.net/builds/cli
34
- if [[ $CLI_VERSION == *"next"* ]]; then
+ if ! [[ $CLI_VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
35
URL=$URL/next
36
fi
37
- curl -O $URL/$FILE_NAME
+ URL=$URL/$FILE_NAME
38
+ echo "Using url: $URL"
39
+ curl -O $URL
40
unzip $FILE_NAME -d .
41
rm $FILE_NAME
42
0 commit comments