build: use https for sysroot download (#25754)
This commit is contained in:
parent
8ac71fd349
commit
ac6bf0b268
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ Make chrome's install-sysroot scripts point to our custom sysroot builds,
|
||||||
which include extra deps that Electron needs (e.g. libnotify)
|
which include extra deps that Electron needs (e.g. libnotify)
|
||||||
|
|
||||||
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py
|
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py
|
||||||
index f8b7906cc557fb196e19dd6684a29c174b56c789..9fe9fe15f6bbaa38bb74930c4d069000f680987b 100755
|
index f8b7906cc557fb196e19dd6684a29c174b56c789..351b3a658b6b6d1dbe2370e825058b8b6dcbf9df 100755
|
||||||
--- a/build/linux/sysroot_scripts/install-sysroot.py
|
--- a/build/linux/sysroot_scripts/install-sysroot.py
|
||||||
+++ b/build/linux/sysroot_scripts/install-sysroot.py
|
+++ b/build/linux/sysroot_scripts/install-sysroot.py
|
||||||
@@ -37,9 +37,11 @@ except ImportError:
|
@@ -37,9 +37,11 @@ except ImportError:
|
||||||
|
@ -19,7 +19,7 @@ index f8b7906cc557fb196e19dd6684a29c174b56c789..9fe9fe15f6bbaa38bb74930c4d069000
|
||||||
|
|
||||||
-URL_PREFIX = 'https://commondatastorage.googleapis.com'
|
-URL_PREFIX = 'https://commondatastorage.googleapis.com'
|
||||||
-URL_PATH = 'chrome-linux-sysroot/toolchain'
|
-URL_PATH = 'chrome-linux-sysroot/toolchain'
|
||||||
+URL_PREFIX = 'http://s3.amazonaws.com'
|
+URL_PREFIX = 'https://s3.amazonaws.com'
|
||||||
+URL_PATH = 'electronjs-sysroots/toolchain'
|
+URL_PATH = 'electronjs-sysroots/toolchain'
|
||||||
|
|
||||||
VALID_ARCHS = ('arm', 'arm64', 'i386', 'amd64', 'mips', 'mips64el')
|
VALID_ARCHS = ('arm', 'arm64', 'i386', 'amd64', 'mips', 'mips64el')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue