vscodium/get_repo.sh
Peter Squicciarini 206f1e77e2 Get build working
2018-08-14 10:02:32 -04:00

8 lines
233 B
Bash
Executable file

#!/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 ..