mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-05 06:00:39 +03:00
16 lines
346 B
Bash
Executable File
16 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d vscode ]; then
|
|
cd vscode
|
|
git fetch --all
|
|
else
|
|
git clone https://github.com/Microsoft/vscode.git
|
|
cd vscode
|
|
fi
|
|
|
|
export LATEST_MS_COMMIT=$(git rev-list --tags --max-count=1)
|
|
export LATEST_MS_TAG=$(git describe --tags ${LATEST_MS_COMMIT})
|
|
echo "Got the latest MS tag: ${LATEST_MS_TAG}"
|
|
git checkout $LATEST_MS_TAG
|
|
cd ..
|