X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=golang%2Finstall.ps1;h=bd32608cd5b80aea6e0f575bfc34d5f3c0839e4a;hb=3f64f8b9c513da3aa4d10e3344426dbb3f817d5e;hp=15b9fa73fcbd1234642de11ebdf4de7f98bfccea;hpb=2073a1eeebdcd30ffaddaf40e7c4940361bd5a08;p=webi-installers%2F.git diff --git a/golang/install.ps1 b/golang/install.ps1 index 15b9fa7..bd32608 100644 --- a/golang/install.ps1 +++ b/golang/install.ps1 @@ -54,7 +54,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 -Force } +IF (!(Test-Path -Path go\bin)) { New-Item -Path go\bin -ItemType Directory -Force | out-null } # Special to go: re-run all go tooling builds echo "Building go language tools..."