Skip to content

Commit 73752d6

Browse files
committed
[Ignore] Fix CI build to use master again
1 parent a604a56 commit 73752d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ before_install:
1616
sudo apt-get install libunwind8;
1717
fi
1818
install:
19-
- git clone --single-branch -b 2.0.0 https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
19+
- git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
2020
- pushd build
2121
- bash <(curl -s https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/install-powershell.sh)
2222
- popd

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environment:
1313
DOTNET_CLI_TELEMETRY_OPTOUT: true # Don't send telemetry
1414

1515
install:
16-
- git clone --single-branch -b 2.0.0 https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
16+
- git clone https://github.com/PowerShell/PowerShellEditorServices.git ../PowerShellEditorServices
1717
- ps: Install-Product node '6.9.2'
1818
- ps: |
1919
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force | Out-Null
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$vstsVariables = @{
2-
PSES_BRANCH = '2.0.0'
2+
PSES_BRANCH = 'master'
33
}
44

55
# Use VSTS's API to set an env vars
@@ -8,4 +8,4 @@ foreach ($var in $vstsVariables.Keys)
88
$val = $vstsVariables[$var]
99
Write-Host "Setting var '$var' to value '$val'"
1010
Write-Host "##vso[task.setvariable variable=$var]$val"
11-
}
11+
}

0 commit comments

Comments
 (0)