mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
11 lines
411 B
PowerShell
11 lines
411 B
PowerShell
$distDir = $env:APPVEYOR_BUILD_FOLDER + "\dist\"
|
|
$distSrcDir = $distDir + "Source\"
|
|
$repoUrl = "https://github.com/" + $env:APPVEYOR_REPO_NAME + ".git"
|
|
git clone -q --branch=master $repoUrl $distSrcDir
|
|
cd $distSrcDir
|
|
git checkout -qf $env:APPVEYOR_REPO_COMMIT
|
|
git submodule update --init --recursive
|
|
cd $distSrcDir
|
|
7z a browser-source-$env:APPVEYOR_BUILD_NUMBER.zip $distSrcDir
|
|
cd $env:APPVEYOR_BUILD_FOLDER
|