From 619e8f6a9a25e53b9dd69d29ef9045d2730b652e Mon Sep 17 00:00:00 2001 From: Timothee Guerin Date: Thu, 6 Dec 2018 08:34:56 -0800 Subject: [PATCH] Fix branch feature/go leftover (#20) --- scripts/dev-windows.ps1 | 2 +- scripts/dev.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dev-windows.ps1 b/scripts/dev-windows.ps1 index 666757f..3a6ee87 100644 --- a/scripts/dev-windows.ps1 +++ b/scripts/dev-windows.ps1 @@ -6,7 +6,7 @@ Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://cho choco install -y golang git $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User") -git clone https://github.com/Azure/batch-insights -b feature/go +git clone https://github.com/Azure/batch-insights Set-Location ./batch-insights diff --git a/scripts/dev.sh b/scripts/dev.sh index 6df8f4d..873bc14 100644 --- a/scripts/dev.sh +++ b/scripts/dev.sh @@ -13,7 +13,7 @@ export PATH=$GOPATH/bin:$GOROOT/bin:$PATH echo GO version $(go version) -git clone https://github.com/Azure/batch-insights -b feature/go +git clone https://github.com/Azure/batch-insights cd batch-insights go build