-
Notifications
You must be signed in to change notification settings - Fork 14
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
Feature/readded argv #11
Conversation
Okay, but IMO, that behavior was a defect because it's not globbing as a regular user would expect it to, so I'm inclined to say your scripts are incorrect. I will take a look and give you a more detailed analysis if pertinent before I make any judgements :) |
Now I remember. Here are my notes:
That means all you have to do to fix your scripts is surround pass -f with single-quotes. As you have it now, you've switched back to unix globbing instead of Ruby globbing, which is superior. Since I have to manage a lot of users, this is going to be confusing for them. They will expect ruby globbing and will be upset with the linter misses files |
ok, but if have so many users, we also could support additionally the |
The problem with So no, it's not the same
|
So I would add the ruby globbing around any file passed. And also additionally readd the |
Okay. I'm good with that |
@johngluckmdsol , I needed ARGV again, cause found, that it is not working in our scripts anymore.
Should have the same behaviour as before, except, that
-f
is not needed anymore.I merge it now, but please check it, John. Thanks.