| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- commit b81183aa181939a2c3b0cf236237a682475dbb08
- Author: Nate McMaster (automated) <[email protected]>
- Date: Mon Jul 2 12:40:11 2018 -0700
- [automated] Change default branch to master
- diff --git a/.appveyor.yml b/.appveyor.yml
- index 4eea96ab69c..d45bd5a1f80 100644
- --- a/.appveyor.yml
- +++ b/.appveyor.yml
- @@ -2,7 +2,7 @@ init:
- - git config --global core.autocrlf true
- branches:
- only:
- - - dev
- + - master
- - /^release\/.*$/
- - /^(.*\/)?ci-.*$/
- build_script:
- diff --git a/.travis.yml b/.travis.yml
- index 28507b93b36..3f610fcd27a 100644
- --- a/.travis.yml
- +++ b/.travis.yml
- @@ -16,7 +16,7 @@ os:
- osx_image: xcode8.2
- branches:
- only:
- - - dev
- + - master
- - /^release\/.*$/
- - /^(.*\/)?ci-.*$/
- before_install:
- diff --git a/korebuild.json b/korebuild.json
- index bd5d51a51b0..8a276a7f35d 100644
- --- a/korebuild.json
- +++ b/korebuild.json
- @@ -1,4 +1,4 @@
- {
- - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
- - "channel": "dev"
- + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
- + "channel": "master"
- }
- diff --git a/run.ps1 b/run.ps1
- index 3b273824681..34604c71758 100644
- --- a/run.ps1
- +++ b/run.ps1
- @@ -52,8 +52,8 @@ in the file are overridden by command line parameters.
- Example config file:
- ```json
- {
- - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
- - "channel": "dev",
- + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
- + "channel": "master",
- "toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
- }
- ```
- @@ -192,7 +192,7 @@ if (!$DotNetHome) {
- else { Join-Path $PSScriptRoot '.dotnet'}
- }
-
- -if (!$Channel) { $Channel = 'dev' }
- +if (!$Channel) { $Channel = 'master' }
- if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' }
-
- # Execute
- diff --git a/run.sh b/run.sh
- index 02aac158742..61f7a533855 100755
- --- a/run.sh
- +++ b/run.sh
- @@ -248,7 +248,7 @@ if [ -f "$config_file" ]; then
- [ ! -z "${config_tools_source:-}" ] && tools_source="$config_tools_source"
- fi
-
- -[ -z "$channel" ] && channel='dev'
- +[ -z "$channel" ] && channel='master'
- [ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools'
-
- get_korebuild
|