Skip to content

Commit

Permalink
Use fixed commit hash, ref #13089
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhao271 committed Jul 20, 2022
1 parent 82c6c55 commit 31ce48d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/linux/debian/dependencies-generator.js
Expand Up @@ -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/fde653b0d3c1d5bfce93b8dfa003d3c289a0c05a/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) {
Expand Down
2 changes: 1 addition & 1 deletion build/linux/debian/dependencies-generator.ts
Expand Up @@ -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/fde653b0d3c1d5bfce93b8dfa003d3c289a0c05a/third_party/dpkg-shlibdeps/dpkg-shlibdeps.pl';
const dpkgShlibdepsScriptLocation = `${tmpdir()}/dpkg-shlibdeps.pl`;
const result = spawnSync('curl', [dpkgShlibdepsUrl, '-o', dpkgShlibdepsScriptLocation]);
if (result.status !== 0) {
Expand Down

0 comments on commit 31ce48d

Please sign in to comment.