vscodium/get_repo.sh

8 lines
233 B
Bash
Raw Normal View History

2018-08-13 18:24:40 +00:00
#!/bin/bash
git clone https://github.com/Microsoft/vscode.git
cd vscode
export LATEST_MS_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "Got the latest MS tag: ${LATEST_MS_TAG}"
git checkout $LATEST_MS_TAG
cd ..