-
Notifications
You must be signed in to change notification settings - Fork 577
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
build: fix some shellcheck issues & use config.sh in more scripts #5927
Conversation
This removes the need to manually pass variables such as `$(TARNAME)` and `$(VERSION)` to shell scripts in the root Makefile. Relates to netblue30#5140.
Escape sequences (and certain flags) may be treated differently by different From
|
Learned, Thanks. Have to say that a |
No problem.
Note that even in bash, with It also helps with consistency with I'm not sure what is the relation of "a |
This removes the need to manually pass variables such as
$(TARNAME)
and
$(VERSION)
to shell scripts in the root Makefile.Relates to #5140.