mirror of
https://github.com/microsoft/playwright-java.git
synced 2025-09-08 21:01:00 +00:00
17 lines
362 B
Bash
Executable File
17 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
|
|
cd "$(dirname $0)/.."
|
|
|
|
./scripts/generate_api.sh
|
|
|
|
# Built from source and do local install.
|
|
mvn clean install --no-transfer-progress -DskipTests
|
|
|
|
echo "Updating browser versions in README.md"
|
|
mvn exec:java --f ./tools/update-docs-version -Dexec.mainClass=com.microsoft.playwright.tools.UpdateBrowserVersions
|