vscodium/get_repo.sh

11 lines
403 B
Bash
Raw Normal View History

2018-08-13 18:24:40 +00:00
#!/bin/bash
2020-09-16 18:18:02 +00:00
# figure out latest tag by calling MS update API
UPDATE_INFO=$(curl https://update.code.visualstudio.com/api/update/darwin/stable/lol)
2020-09-16 18:21:30 +00:00
export LATEST_MS_COMMIT=$(echo $UPDATE_INFO | jq -r '.version')
export LATEST_MS_TAG=$(echo $UPDATE_INFO | jq -r '.name')
2018-08-13 18:24:40 +00:00
echo "Got the latest MS tag: ${LATEST_MS_TAG}"
2020-09-16 18:18:02 +00:00
git clone https://github.com/Microsoft/vscode.git --branch $LATEST_MS_TAG --depth 1