Replaced all instances of webi.ps1 with webi-pwsh.ps1
authorJames Bohan <j.carter.bohan@gmail.com>
Thu, 25 Mar 2021 09:53:31 +0000 (02:53 -0700)
committerAJ ONeal <aj@therootcompany.com>
Mon, 29 Mar 2021 05:03:10 +0000 (05:03 +0000)
_webi/bootstrap.ps1
_webi/webi.ps1
_webi/webi.ps1.bat
golang/install.ps1
webi/README.md

index 0060fab4097432f625efd8406adff1041db281df..ace4f3a7a388d931e21f305b35b629ba09c48e56 100644 (file)
@@ -1,6 +1,6 @@
 # Download the latest webi, then install {{ exename }}
 New-Item -Path .local\bin -ItemType Directory -Force
 IF ($Env:WEBI_HOST -eq $null -or $Env:WEBI_HOST -eq "") { $Env:WEBI_HOST = "https://webinstall.dev" }
-curl.exe -s -A "windows" "$Env:WEBI_HOST/packages/_webi/webi.ps1" -o "$Env:USERPROFILE\.local\bin\webi.ps1"
+curl.exe -s -A "windows" "$Env:WEBI_HOST/packages/_webi/webi-pwsh.ps1" -o "$Env:USERPROFILE\.local\bin\webi-pwsh.ps1"
 Set-ExecutionPolicy -Scope Process Bypass
-& "$Env:USERPROFILE\.local\bin\webi.ps1" "{{ exename }}"
+& "$Env:USERPROFILE\.local\bin\webi-pwsh.ps1" "{{ exename }}"
index 3a2b9c64752bdf8a5f6bc8d541017f110158ea7a..73f30982aaeb299e0de83dff96c2c9b118f8d5ac 100644 (file)
@@ -30,7 +30,7 @@ New-Item -Path .local\bin -ItemType Directory -Force
 New-Item -Path .local\xbin -ItemType Directory -Force
 
 # See note on Set-ExecutionPolicy above
-Set-Content -Path .local\bin\webi.bat -Value "@echo off`r`npushd %USERPROFILE%`r`npowershell -ExecutionPolicy Bypass .local\bin\webi.ps1 %1`r`npopd"
+Set-Content -Path .local\bin\webi.bat -Value "@echo off`r`npushd %USERPROFILE%`r`npowershell -ExecutionPolicy Bypass .local\bin\webi-pwsh.ps1 %1`r`npopd"
 if (!(Test-Path -Path .local\opt))
 {
     New-Item -Path .local\opt -ItemType Directory -Force
index 17915addec382269c9cf366d8b84db9cd35b569c..9badacc30f3e23f8374ba09d77c0b8c93df82eb6 100644 (file)
@@ -1 +1 @@
-powershell -ExecutionPolicy Bypass .\.local\bin\webi.ps1 %1
+powershell -ExecutionPolicy Bypass .\.local\bin\webi-pwsh.ps1 %1
index 44a0db8e743cebe36d6a87be6137625980ac6b63..8b7f8c2b34fe06995f760f701adf00a0fdef6a66 100644 (file)
@@ -11,7 +11,7 @@ $pkg_dst_bin = "$pkg_dst\bin"
 
 if (!(Get-Command "git.exe" -ErrorAction SilentlyContinue))
 {
-    & "$Env:USERPROFILE\.local\bin\webi.ps1" git
+    & "$Env:USERPROFILE\.local\bin\webi-pwsh.ps1" git
     # because we need git.exe to be available to golang immediately
     $Env:PATH = "$Env:USERPROFILE\.local\opt\git\cmd;$Env:PATH"
 }
index 0455538dadf36a174e0bb24bc187be3e4c95ea8f..872a9d66c1ae8161bc1f2417900f9e96176ce1d0 100644 (file)
@@ -63,7 +63,7 @@ These are the files that are installed when you use [webinstall.dev](/):
 
 # Windows 10
 ~/.local/bin/webi.cmd
-~/.local/bin/webi.ps1
+~/.local/bin/webi-pwsh.ps1
 ~/.local/bin/pathman.exe
 ~/.local/opt/pathman-*
 ```