From 949224339b4f9f73ce2668286b0b28af1138b78c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 28 Mar 2018 14:32:41 -0400 Subject: [PATCH] script fixes --- ci-dist-source.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci-dist-source.ps1 b/ci-dist-source.ps1 index 1379d89249..5525c76ed2 100644 --- a/ci-dist-source.ps1 +++ b/ci-dist-source.ps1 @@ -1,10 +1,10 @@ $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 +git clone $repoUrl $distSrcDir cd $distSrcDir -git checkout -qf $env:APPVEYOR_REPO_COMMIT +git checkout $env:APPVEYOR_REPO_COMMIT git submodule update --init --recursive cd $distSrcDir -7z a browser-source-$env:APPVEYOR_BUILD_NUMBER.zip $distSrcDir +7z a browser-source-$env:APPVEYOR_BUILD_NUMBER.zip $distDir cd $env:APPVEYOR_BUILD_FOLDER