This was written years before I had a firm grasp on the POSIX shell, and before the ability to modify the PATH in PowerShell was widespread (the previous methods were buggy due to the 255 character limitation).
Go was a great choice at the time, and with my knowledge - but it isn't anymore.
The POSIX rewrite would include Webi's webi_path_add function and would be similar in nature to https://github.com/bnnanet/serviceman
Here's the secret for how to set the PATH on Windows in this new age:
[Environment]::SetEnvironmentVariable(
"Path",
[Environment]::GetEnvironmentVariable("Path", "User") + ";C:\your-path\zig-windows-x86_64-your-version",
"User"
)
See also
This was written years before I had a firm grasp on the POSIX shell, and before the ability to modify the PATH in PowerShell was widespread (the previous methods were buggy due to the 255 character limitation).
Go was a great choice at the time, and with my knowledge - but it isn't anymore.
The POSIX rewrite would include Webi's
webi_path_addfunction and would be similar in nature to https://github.com/bnnanet/servicemanHere's the secret for how to set the PATH on Windows in this new age:
See also
pathmanin favor of posix & powershell functions webinstall/webi-installers#505