From fa5fc38ac31c8ef3ed259437f2459bcb6d240387 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 4 Jul 2020 07:08:16 +0000 Subject: [PATCH] make the go\bin directory on windows --- golang/install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/golang/install.ps1 b/golang/install.ps1 index d7d1161..f2ded21 100644 --- a/golang/install.ps1 +++ b/golang/install.ps1 @@ -47,6 +47,7 @@ IF (!(Test-Path -Path "$pkg_src")) echo "Copying into '$pkg_dst' from '$pkg_src'" Remove-Item -Path "$pkg_dst" -Recurse -ErrorAction Ignore Copy-Item -Path "$pkg_src" -Destination "$pkg_dst" -Recurse +IF (!(Test-Path -Path go\bin)) { New-Item -Path go\bin -ItemType Directory } # Special to go: re-run all go tooling builds echo "Building go language tools..." -- 2.25.1