Skip to content

Commit 13fb00a

Browse files
author
Nate McMaster
committed
Update KoreBuild to dev
1 parent 684a774 commit 13fb00a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ os:
1717
- osx
1818
osx_image: xcode7.1
1919
script:
20-
- ./build.sh verify
20+
- ./build.sh

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ artifacts:
2828
- path: templates\package-builder\dist\artifacts\*.nupkg
2929
name: Microsoft.AspNetCore.SpaTemplates
3030
type: NuGetPackage
31-
# - build.cmd verify
31+
# - ps: .\build.ps1
3232
clone_depth: 1
3333
test_script:
3434
# - dotnet restore ./src

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cd $PSScriptRoot
3333
$repoFolder = $PSScriptRoot
3434
$env:REPO_FOLDER = $repoFolder
3535

36-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/feature/msbuild.zip"
36+
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
3737
if ($env:KOREBUILD_ZIP)
3838
{
3939
$koreBuildZip=$env:KOREBUILD_ZIP
@@ -64,4 +64,4 @@ if (!(Test-Path $buildFolder)) {
6464
}
6565
}
6666

67-
&"$buildFile" $args
67+
&"$buildFile" @args

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
33
cd $repoFolder
44

5-
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/feature/msbuild.zip"
5+
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

0 commit comments

Comments
 (0)