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
Using:
curl --proto '=https' --tlsv1.2 -sLSf "https://github.com/dmtrKovalenko/blendr/blob/main/install.sh?raw=true" | sh
results in an executable called $HOME/.local/bin i.e., blendr is not put in bin, but is called bin
$HOME/.local/bin
The script needs the single line:
install_dir="$HOME/.local/bin"
replaced with the two lines:
mkdir -p "$HOME/.local/bin" install_dir="$HOME/.local/bin/" NOTE the trailing slash
mkdir -p "$HOME/.local/bin"
install_dir="$HOME/.local/bin/"
Note also that the path to blendr is not added to $PATH
$PATH
Otherwise, blendr seems to work very well, thank you. :-)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using:
curl --proto '=https' --tlsv1.2 -sLSf "https://github.com/dmtrKovalenko/blendr/blob/main/install.sh?raw=true" | sh
results in an executable called
$HOME/.local/bin
i.e., blendr is not put in bin, but is called binThe script needs the single line:
install_dir="$HOME/.local/bin"
replaced with the two lines:
mkdir -p "$HOME/.local/bin"
install_dir="$HOME/.local/bin/"
NOTE the trailing slashNote also that the path to blendr is not added to
$PATH
Otherwise, blendr seems to work very well, thank you. :-)
The text was updated successfully, but these errors were encountered: