We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
~/.local/bin
When running zigup 0.14.0-dev.1710+8ee52f99c, the script fails at this command:
zigup 0.14.0-dev.1710+8ee52f99c
ln -s '/home/<user>/zig/0.14.0-dev.1710+8ee52f99c/files/zig' '/home/<user>/.local/bin/zig'
error: FileNotFound
I fixed the error with mkdir $HOME/.local/bin. Running zigup again, I got a more helpful error:
mkdir $HOME/.local/bin
error: the path link '/home/<user>/.local/bin/zig' is not in PATH
This was fixed with the command: export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
Should at least the first step be added to the script?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
zigup 0.14.0-dev.1710+8ee52f99c
, the script fails at this command:I fixed the error with
mkdir $HOME/.local/bin
. Running zigup again, I got a more helpful error:This was fixed with the command:
export PATH="$HOME/.local/bin:$PATH"
Should at least the first step be added to the script?
The text was updated successfully, but these errors were encountered: