mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-11 16:27:18 +10:00
19 lines
1.4 KiB
Diff
19 lines
1.4 KiB
Diff
diff --git a/build/gulpfile.reh.ts b/build/gulpfile.reh.ts
|
|
index cb1a0a5..dacedc3 100644
|
|
--- a/build/gulpfile.reh.ts
|
|
+++ b/build/gulpfile.reh.ts
|
|
@@ -323,3 +323,3 @@ function packageTask(type: string, platform: string, arch: string, sourceFolderN
|
|
const productJsonStream = gulp.src(['product.json'], { base: '.' })
|
|
- .pipe(jsonEditor({ commit, date: readISODate('out-build'), version }))
|
|
+ .pipe(jsonEditor({ commit, date: readISODate('out-build'), version, serverDownloadUrlTemplate: 'https://github.com/!!ASSETS_REPOSITORY!!/releases/download/!!RELEASE_VERSION!!/!!APP_NAME_LC!!-reh-${os}-${arch}-!!RELEASE_VERSION!!.tar.gz' }))
|
|
.pipe(es.through(function (file) {
|
|
diff --git a/build/gulpfile.vscode.ts b/build/gulpfile.vscode.ts
|
|
index d3ab651..1000abc 100644
|
|
--- a/build/gulpfile.vscode.ts
|
|
+++ b/build/gulpfile.vscode.ts
|
|
@@ -272,3 +272,3 @@ function packageTask(platform: string, arch: string, sourceFolderName: string, d
|
|
const productJsonStream = gulp.src(['product.json'], { base: '.' })
|
|
- .pipe(jsonEditor({ commit, date: readISODate('out-build'), checksums, version }))
|
|
+ .pipe(jsonEditor({ commit, date: readISODate('out-build'), checksums, version, serverDownloadUrlTemplate: 'https://github.com/!!ASSETS_REPOSITORY!!/releases/download/!!RELEASE_VERSION!!/!!APP_NAME_LC!!-reh-${os}-${arch}-!!RELEASE_VERSION!!.tar.gz' }))
|
|
.pipe(es.through(function (file) {
|