Skip to content
New issue

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

script_dir computation line error handling is incorrect #134

Closed
grumpyf0x48 opened this issue Sep 19, 2020 · 0 comments · Fixed by #137
Closed

script_dir computation line error handling is incorrect #134

grumpyf0x48 opened this issue Sep 19, 2020 · 0 comments · Fixed by #137
Assignees
Labels
Milestone

Comments

@grumpyf0x48
Copy link

When using argbash with parsing code generated in a separate script, the following code is generated:

script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" || die "Couldn't determine the script's running directory, which probably matters, bailing out" 2
. "$script_dir/simple-parsing.sh"  # '.' means 'source'

So if the script_dir computation fails, the call to die will fail because this function is defined in $script_dir/simple-parsing.sh which inclusion just failed !

Normaly it will never happen since dirname and pwd probably won't fail but it would be better to do:

|| { echo "Couldn't determine the script's running directory, which probably matters, bailing out"; exit 2; }

@matejak matejak added this to the 2.9.1 milestone Sep 19, 2020
@matejak matejak added the bug label Sep 19, 2020
@matejak matejak self-assigned this Sep 19, 2020
matejak added a commit that referenced this issue Sep 20, 2020
s.a error handing of script's directry detection.

Fixes: #134
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants