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
OS: Linux 5.4.0-77-generic #86~18.04.1-Ubuntu
In the "install" function at line 73:
# check if okta is on the path LOCATION=$(command -v okta)
This fails (and the script exits) because the script has set exit on error at line 18: set -e
set -e
To fix this, just do this around setting the "LOCATION" var:
set +e # check if okta is on the path LOCATION=$(command -v okta) set -e
or use "try" as done in the previous code block.
The text was updated successfully, but these errors were encountered:
Thanks for the report and the suggestion @poppgs64!!
Sorry, something went wrong.
No branches or pull requests
OS: Linux 5.4.0-77-generic #86~18.04.1-Ubuntu
In the "install" function at line 73:
This fails (and the script exits) because the script has set exit on error at line 18:
set -e
To fix this, just do this around setting the "LOCATION" var:
or use "try" as done in the previous code block.
The text was updated successfully, but these errors were encountered: