repo url variable

This commit is contained in:
Kyle Spearrin 2018-03-28 14:17:27 -04:00
parent 5b83a0ea0a
commit b7b43406e8
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
$distDir = $env:APPVEYOR_BUILD_FOLDER + "\dist\"
$distSrcDir = $distDir + "Source\"
git clone https://github.com/ + $env:APPVEYOR_REPO_NAME + ".git" $distSrcDir
$repoUrl = "https://github.com/" + $env:APPVEYOR_REPO_NAME + ".git"
git clone -q --branch=master $repoUrl $distSrcDir
cd $distSrcDir
git checkout $env:APPVEYOR_REPO_COMMIT
git checkout -qf $env:APPVEYOR_REPO_COMMIT
git submodule update --init --recursive
cd $distSrcDir
7z a browser-source-$env:APPVEYOR_BUILD_NUMBER.zip $distSrcDir