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
The install.sh script is checking if the environment variable XDG_DATA_HOME is set:
install.sh
XDG_DATA_HOME
if [ -z "$XDG_DATA_HOME" ]; then LOCAL_INSTALL_DIR=~/.local/share/konsole else LOCAL_INSTALL_DIR="${XDG_DATA_HOME}/konsole" fi
But the script also does set -o nounset. This seems to be mutually exclusive. The script does not run but displays an error:
set -o nounset
$ ./install.sh ./install.sh: line 106: XDG_DATA_HOME: unbound variable
I guess the nounset options needs to be removed.
nounset
The text was updated successfully, but these errors were encountered:
Same problem here.
Sorry, something went wrong.
No branches or pull requests
The
install.sh
script is checking if the environment variableXDG_DATA_HOME
is set:But the script also does
set -o nounset
. This seems to be mutually exclusive. The script does not run but displays an error:I guess the
nounset
options needs to be removed.The text was updated successfully, but these errors were encountered: