123456789101112131415161718 |
- diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js
- index ae33cc9..06c2a67 100644
- --- a/build/gulpfile.reh.js
- +++ b/build/gulpfile.reh.js
- @@ -251,3 +251,3 @@ function packageTask(type, platform, arch, sourceFolderName, destinationFolderNa
- const productJsonStream = gulp.src(['product.json'], { base: '.' })
- - .pipe(json({ commit, date, version, release }));
- + .pipe(json({ commit, date, version, release, serverDownloadUrlTemplate: 'https://github.com/VSCodium/vscodium-insiders/releases/download/${version}.${release}-insider/vscodium-reh-${os}-${arch}-${version}.${release}-insider.tar.gz' }));
-
- diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
- index 938943d..2d84a15 100644
- --- a/build/gulpfile.vscode.js
- +++ b/build/gulpfile.vscode.js
- @@ -245,3 +245,3 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
- const date = new Date().toISOString();
- - const productJsonUpdate = { commit, date, checksums, version, release };
- + const productJsonUpdate = { commit, date, checksums, version, release, serverDownloadUrlTemplate: 'https://github.com/VSCodium/vscodium-insiders/releases/download/${version}.${release}-insider/vscodium-reh-${os}-${arch}-${version}.${release}-insider.tar.gz' };
-
|