win: bugfix Env:WEBI_HOST in webi.ps1
authorAJ ONeal <aj@therootcompany.com>
Sun, 28 Jun 2020 12:48:29 +0000 (12:48 +0000)
committerAJ ONeal <aj@therootcompany.com>
Sun, 28 Jun 2020 12:48:29 +0000 (12:48 +0000)
_webi/template.ps1
_webi/webi.ps1

index 1ccc5c6c7b1d92aa6fbd509eb7fb233c0b163dd7..dc0699db33b0b9d65be92508d213991013a07941 100644 (file)
@@ -31,6 +31,9 @@ if (!(Test-Path -Path .local\opt))
 # {{ baseurl }}
 # {{ version }}
 
+# Run pathman to set up the folder
+& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\.bin"
+
 {{ installer }}
 
 # Done
index 3e302420babbc85050d8da3a2ecf2e1590bf0d69..7ec0c1d368c03318870321c57835e6da189cf8ff 100644 (file)
@@ -26,6 +26,13 @@ if (!(Test-Path -Path .local\tmp))
     New-Item -Path .local\tmp -ItemType Directory
 }
 
+# TODO SetStrictMode
+# TODO Test-Path variable:global:Env:WEBI_HOST ???
+IF(!$Env:WEBI_HOST)
+{
+    $Env:WEBI_HOST = "https://webinstall.dev"
+}
+
 if (!(Test-Path -Path .local\bin\pathman.exe))
 {
     & curl.exe -fsSL -A "$Env:WEBI_UA" "$Env:WEBI_HOST/packages/pathman/install.ps1" -o .\.local\tmp\pathman-setup.ps1