refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / golang / install.ps1
index bd32608cd5b80aea6e0f575bfc34d5f3c0839e4a..779472f81b3fd5ff1e477bd1f3e2eae091469d44 100644 (file)
@@ -1,7 +1,8 @@
 #!/usr/bin/env pwsh
 
 $pkg_cmd_name = "go"
-$pkg_download = "$Env:USERPROFILE\Downloads\$Env:WEBI_PKG_FILE"
+New-Item "$Env:USERPROFILE\Downloads\webi" -ItemType Directory -Force | out-null
+$pkg_download = "$Env:USERPROFILE\Downloads\webi\$Env:WEBI_PKG_FILE"
 
 $pkg_src = "$Env:USERPROFILE\.local\opt\$pkg_cmd_name-v$Env:WEBI_VERSION"