Browse Source

fix: remove "-insider" from MS_TAG [skip ci]

Baptiste Augrain 2 years ago
parent
commit
f8f64410c6
1 changed files with 5 additions and 1 deletions
  1. 5 1
      get_repo.sh

+ 5 - 1
get_repo.sh

@@ -22,12 +22,16 @@ if [[ -z "${RELEASE_VERSION}" ]]; then
   if [[ -z "${MS_COMMIT}" ]]; then
     export MS_COMMIT=$( echo "${UPDATE_INFO}" | jq -r '.version' )
     export MS_TAG=$( echo "${UPDATE_INFO}" | jq -r '.name' )
+
+    if [[ "${VSCODE_QUALITY}" == "insider" ]]; then
+      export MS_TAG="${MS_TAG/\-insider/}"
+    fi
   fi
 
   date=$( date +%Y%j )
 
   if [[ "${VSCODE_QUALITY}" == "insider" ]]; then
-    export RELEASE_VERSION="${MS_TAG/\-insider/}.${date: -5}-insider"
+    export RELEASE_VERSION="${MS_TAG}.${date: -5}-insider"
   else
     export RELEASE_VERSION="${MS_TAG}.${date: -5}"
   fi