diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1b86f26 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vscode diff --git a/get_repo.sh b/get_repo.sh index acf5527..ee03a07 100755 --- a/get_repo.sh +++ b/get_repo.sh @@ -1,8 +1,14 @@ #!/bin/bash -git clone https://github.com/Microsoft/vscode.git -cd vscode +if [ -d vscode ]; then + cd vscode + git fetch --all +else + git clone https://github.com/Microsoft/vscode.git + cd vscode +fi + 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 .. \ No newline at end of file +cd ..