2020-12-18 18:42:11 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
set +x
|
|
|
|
|
|
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
|
|
|
|
|
|
|
|
cd "$(dirname $0)/.."
|
|
|
|
|
|
|
|
|
|
# Built from source and do local install.
|
2021-08-12 08:43:51 -07:00
|
|
|
mvn install --no-transfer-progress -D skipTests
|
2020-12-18 18:42:11 -08:00
|
|
|
|
|
|
|
|
echo "Updating browser versions in README.md"
|
2021-03-06 08:04:03 -08:00
|
|
|
mvn compile exec:java --f ./tools/update-docs-version -D exec.mainClass=com.microsoft.playwright.tools.UpdateBrowserVersions
|