فهرست منبع

(experiment) remove jq double quotes

Peter Squicciarini 4 سال پیش
والد
کامیت
99038981dc
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      get_repo.sh

+ 2 - 2
get_repo.sh

@@ -2,8 +2,8 @@
 
 
 # figure out latest tag by calling MS update API
 # figure out latest tag by calling MS update API
 UPDATE_INFO=$(curl https://update.code.visualstudio.com/api/update/darwin/stable/lol)
 UPDATE_INFO=$(curl https://update.code.visualstudio.com/api/update/darwin/stable/lol)
-export LATEST_MS_COMMIT=$(echo $UPDATE_INFO | jq '.version')
-export LATEST_MS_TAG=$(echo $UPDATE_INFO | jq '.name')
+export LATEST_MS_COMMIT=$(echo $UPDATE_INFO | jq -r '.version')
+export LATEST_MS_TAG=$(echo $UPDATE_INFO | jq -r '.name')
 echo "Got the latest MS tag: ${LATEST_MS_TAG}"
 echo "Got the latest MS tag: ${LATEST_MS_TAG}"
 
 
 git clone https://github.com/Microsoft/vscode.git --branch $LATEST_MS_TAG --depth 1
 git clone https://github.com/Microsoft/vscode.git --branch $LATEST_MS_TAG --depth 1