Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build/gulpfile.vscode.linux.js')
-rw-r--r--build/gulpfile.vscode.linux.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gulpfile.vscode.linux.js b/build/gulpfile.vscode.linux.js
index 3c6a7b3ee89..7d0f70f9bef 100644
--- a/build/gulpfile.vscode.linux.js
+++ b/build/gulpfile.vscode.linux.js
@@ -176,7 +176,7 @@ function prepareRpmPackage(arch) {
const code = gulp.src(binaryDir + '/**/*', { base: binaryDir })
.pipe(rename(function (p) { p.dirname = 'BUILD/usr/share/' + product.applicationName + '/' + p.dirname; }));
- const dependencies = rpmDependenciesGenerator.getDependencies(binaryDir, product.applicationName);
+ const dependencies = rpmDependenciesGenerator.getDependencies(binaryDir, product.applicationName, rpmArch);
const spec = gulp.src('resources/linux/rpm/code.spec.template', { base: '.' })
.pipe(replace('@@NAME@@', product.applicationName))
.pipe(replace('@@NAME_LONG@@', product.nameLong))