-
Notifications
You must be signed in to change notification settings - Fork 59
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
xlint: check for var definitions other than x=... #42
Comments
Does declaring |
|
No, it was used to construct the distfiles at the toplevel local doesn't work here. I fixed this by prefixing it with an underscore. This was an error in my template that caused xgensum to missbehave. These kind of error should be checked in xlint. |
Also checking for function names may be useful (i merged some of those, unfortunately):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Posix Shell allows to set global variables with constructs other then
x=
. xlint should check if a variable is set with one of these constructs:for i ...
export i=
The text was updated successfully, but these errors were encountered: