1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00
Files
browser/ci-dist-source.ps1
Kyle Spearrin 949224339b script fixes
2018-03-28 14:32:41 -04:00

11 lines
385 B
PowerShell

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