From ee1cf86ff7e4fad312a6a53b097c623b3f298c32 Mon Sep 17 00:00:00 2001 From: Peter Squicciarini Date: Mon, 10 Sep 2018 16:18:00 -0400 Subject: [PATCH] Rename app to VSCodium (#12) --- .travis.yml | 2 ++ build.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 63804a1..5242c71 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,8 @@ before_deploy: deploy: provider: releases skip_cleanup: true + overwrite: true + name: $LATEST_MS_TAG api_key: $GITHUB_TOKEN file_glob: true file: diff --git a/build.sh b/build.sh index 6ab703f..f141515 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then cd vscode yarn mv product.json product.json.bak - cat product.json.bak | jq 'setpath(["extensionsGallery"]; {"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", "itemUrl": "https://marketplace.visualstudio.com/items"})' > product.json + cat product.json.bak | jq 'setpath(["extensionsGallery"]; {"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery", "cacheUrl": "https://vscode.blob.core.windows.net/gallery/index", "itemUrl": "https://marketplace.visualstudio.com/items"}) | setpath(["nameShort"]; "VSCodium") | setpath(["nameLong"]; "VSCodium") | setpath(["applicationName"]; "vscodium") | setpath(["win32MutexName"]; "vscodium") | setpath(["win32DirName"]; "VSCodium") | setpath(["win32NameVersion"]; "VSCodium") | setpath(["win32RegValueName"]; "VSCodium") | setpath(["win32AppUserModelId"]; "Microsoft.VSCodium") | setpath(["win32ShellNameShort"]; "V&SCodium") | setpath(["urlProtocol"]; "vscodium")' > product.json cat product.json export NODE_ENV=production