Get build working

This commit is contained in:
Peter Squicciarini
2018-08-13 14:24:40 -04:00
parent 83847916ca
commit 206f1e77e2
6 changed files with 63 additions and 30 deletions

8
get_repo.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/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 ..