소스 검색

ci: add logs [skip ci]

Baptiste Augrain 1 년 전
부모
커밋
2f1f18834d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      get_repo.sh

+ 2 - 0
get_repo.sh

@@ -21,8 +21,10 @@ fi
 
 if [[ -z "${RELEASE_VERSION}" ]]; then
   if [[ "${VSCODE_LATEST}" == "yes" ]] || [[ ! -f "${VSCODE_QUALITY}.json" ]]; then
+    echo "Retrieve lastest version"
     UPDATE_INFO=$( curl --silent --fail "https://update.code.visualstudio.com/api/update/darwin/${VSCODE_QUALITY}/0000000000000000000000000000000000000000" )
   else
+    echo "Get version from ${VSCODE_QUALITY}.json"
     MS_COMMIT=$( jq -r '.commit' "${VSCODE_QUALITY}.json" )
     MS_TAG=$( jq -r '.tag' "${VSCODE_QUALITY}.json" )
   fi