mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-04 16:44:11 +03:00
ec8d0629f3
Fixes #7232
12 lines
359 B
Bash
Executable File
12 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
cd /tmp
|
|
curl -o ./msedge_beta.pkg -k "$1"
|
|
# Note: there's no way to uninstall previously installed MSEdge.
|
|
# However, running PKG again seems to update installation.
|
|
sudo installer -pkg /tmp/msedge_beta.pkg -target /
|
|
rm -rf /tmp/msedge_beta.pkg
|
|
/Applications/Microsoft\ Edge\ Beta.app/Contents/MacOS/Microsoft\ Edge\ Beta --version
|