add webi_add_path
authorAJ ONeal <aj@therootcompany.com>
Sat, 4 Jul 2020 22:36:51 +0000 (22:36 +0000)
committerAJ ONeal <aj@therootcompany.com>
Sat, 4 Jul 2020 22:36:51 +0000 (22:36 +0000)
_webi/template.ps1

index 5eca6fac01b204046225309ee25e5b71d897099b..38e60e161292c6f4b7138fefead0c97535a22fde 100644 (file)
@@ -33,10 +33,17 @@ if (!(Test-Path -Path .local\opt))
 # {{ baseurl }}
 # {{ version }}
 
+function webi_add_path
+{
+    & "$Env:USERPROFILE\.local\bin\pathman.exe" add "$args[0]"
+    # Note: not all of these work as expected, so we use the unix-style, which is most consistent
+    #& "$Env:USERPROFILE\.local\bin\pathman.exe" add ~/.local/bin
+    #& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\bin"
+    #& "$Env:USERPROFILE\.local\bin\pathman.exe" add %USERPROFILE%\.local\bin
+}
+
 # Run pathman to set up the folder
 & "$Env:USERPROFILE\.local\bin\pathman.exe" add ~/.local/bin
-#& "$Env:USERPROFILE\.local\bin\pathman.exe" add "$Env:USERPROFILE\.local\bin"
-#& "$Env:USERPROFILE\.local\bin\pathman.exe" add %USERPROFILE%\.local\bin
 
 {{ installer }}