Skip to content

Commit 86328bc

Browse files
committed
chore: do not use -k option (#37532)
1 parent 63799ba commit 86328bc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/playwright-core/bin/reinstall_chrome_beta_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44

55
rm -rf "/Applications/Google Chrome Beta.app"
66
cd /tmp
7-
curl --retry 3 -o ./googlechromebeta.dmg -k https://dl.google.com/chrome/mac/universal/beta/googlechromebeta.dmg
7+
curl --retry 3 -o ./googlechromebeta.dmg https://dl.google.com/chrome/mac/universal/beta/googlechromebeta.dmg
88
hdiutil attach -nobrowse -quiet -noautofsck -noautoopen -mountpoint /Volumes/googlechromebeta.dmg ./googlechromebeta.dmg
99
cp -pR "/Volumes/googlechromebeta.dmg/Google Chrome Beta.app" /Applications
1010
hdiutil detach /Volumes/googlechromebeta.dmg

packages/playwright-core/bin/reinstall_chrome_stable_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44

55
rm -rf "/Applications/Google Chrome.app"
66
cd /tmp
7-
curl --retry 3 -o ./googlechrome.dmg -k https://dl.google.com/chrome/mac/universal/stable/GGRO/googlechrome.dmg
7+
curl --retry 3 -o ./googlechrome.dmg https://dl.google.com/chrome/mac/universal/stable/GGRO/googlechrome.dmg
88
hdiutil attach -nobrowse -quiet -noautofsck -noautoopen -mountpoint /Volumes/googlechrome.dmg ./googlechrome.dmg
99
cp -pR "/Volumes/googlechrome.dmg/Google Chrome.app" /Applications
1010
hdiutil detach /Volumes/googlechrome.dmg

packages/playwright-core/bin/reinstall_msedge_beta_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33
set -x
44

55
cd /tmp
6-
curl --retry 3 -o ./msedge_beta.pkg -k "$1"
6+
curl --retry 3 -o ./msedge_beta.pkg "$1"
77
# Note: there's no way to uninstall previously installed MSEdge.
88
# However, running PKG again seems to update installation.
99
sudo installer -pkg /tmp/msedge_beta.pkg -target /

packages/playwright-core/bin/reinstall_msedge_dev_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33
set -x
44

55
cd /tmp
6-
curl --retry 3 -o ./msedge_dev.pkg -k "$1"
6+
curl --retry 3 -o ./msedge_dev.pkg "$1"
77
# Note: there's no way to uninstall previously installed MSEdge.
88
# However, running PKG again seems to update installation.
99
sudo installer -pkg /tmp/msedge_dev.pkg -target /

packages/playwright-core/bin/reinstall_msedge_stable_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33
set -x
44

55
cd /tmp
6-
curl --retry 3 -o ./msedge_stable.pkg -k "$1"
6+
curl --retry 3 -o ./msedge_stable.pkg "$1"
77
# Note: there's no way to uninstall previously installed MSEdge.
88
# However, running PKG again seems to update installation.
99
sudo installer -pkg /tmp/msedge_stable.pkg -target /

0 commit comments

Comments
 (0)