diff --git a/build/linux/debian/dependencies-generator.js b/build/linux/debian/dependencies-generator.js index 64fd184aae0..235ca268531 100644 --- a/build/linux/debian/dependencies-generator.js +++ b/build/linux/debian/dependencies-generator.js @@ -76,7 +76,7 @@ function calculatePackageDeps(binaryPath, arch, sysroot) { console.error('Tried to stat ' + binaryPath + ' but failed.'); } // Get the Chromium dpkg-shlibdeps file. - const dpkgShlibdepsUrl = 'https://raw.githubusercontent.com/chromium/chromium/main/third_party/dpkg-shlibdeps/dpkg-shlibdeps.pl'; + const dpkgShlibdepsUrl = 'https://raw.githubusercontent.com/chromium/chromium/100.0.4896.160/third_party/dpkg-shlibdeps/dpkg-shlibdeps.pl'; const dpkgShlibdepsScriptLocation = `${(0, os_1.tmpdir)()}/dpkg-shlibdeps.pl`; const result = (0, child_process_1.spawnSync)('curl', [dpkgShlibdepsUrl, '-o', dpkgShlibdepsScriptLocation]); if (result.status !== 0) { diff --git a/build/linux/debian/dependencies-generator.ts b/build/linux/debian/dependencies-generator.ts index 8e1c3fc042f..9e3d466cfe0 100644 --- a/build/linux/debian/dependencies-generator.ts +++ b/build/linux/debian/dependencies-generator.ts @@ -86,7 +86,7 @@ function calculatePackageDeps(binaryPath: string, arch: ArchString, sysroot: str } // Get the Chromium dpkg-shlibdeps file. - const dpkgShlibdepsUrl = 'https://raw.githubusercontent.com/chromium/chromium/main/third_party/dpkg-shlibdeps/dpkg-shlibdeps.pl'; + const dpkgShlibdepsUrl = 'https://raw.githubusercontent.com/chromium/chromium/100.0.4896.160/third_party/dpkg-shlibdeps/dpkg-shlibdeps.pl'; const dpkgShlibdepsScriptLocation = `${tmpdir()}/dpkg-shlibdeps.pl`; const result = spawnSync('curl', [dpkgShlibdepsUrl, '-o', dpkgShlibdepsScriptLocation]); if (result.status !== 0) {