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
Describe the bug Permissions are not set when updating cncli.sh manually.
To Reproduce
Additional context https://github.com/cardano-community/guild-operators/blob/master/scripts/cnode-helper-scripts/env After modifying line 403 of the env file, no error occurred and the permissions were set correctly.
Before fix [[ ! "${1}" == "env" ]] && chmod +x "${1}" After fix [[ ! "${1}" == "env" ]] && chmod +x "${PARENT}/${1}"
[[ ! "${1}" == "env" ]] && chmod +x "${1}"
[[ ! "${1}" == "env" ]] && chmod +x "${PARENT}/${1}"
The text was updated successfully, but these errors were encountered:
Fix checkUpdate chmod path, closes #1135
52cbae9
Thanks, linked PR should fix the change
Sorry, something went wrong.
28ae6ca
Thanks!
No branches or pull requests
Describe the bug
Permissions are not set when updating cncli.sh manually.
To Reproduce
Additional context
https://github.com/cardano-community/guild-operators/blob/master/scripts/cnode-helper-scripts/env
After modifying line 403 of the env file, no error occurred and the permissions were set correctly.
Before fix
[[ ! "${1}" == "env" ]] && chmod +x "${1}"
After fix
[[ ! "${1}" == "env" ]] && chmod +x "${PARENT}/${1}"
The text was updated successfully, but these errors were encountered: