-
Notifications
You must be signed in to change notification settings - Fork 18
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
Compatible with Django-Pipeline >= 1.6.x, fixed issue with Permission… #16
Conversation
Looks great, does this mean that |
I believe so, this commit had changed |
if exists == True or exists == False: | ||
deps.append(dep['file']) | ||
|
||
if command[0] is '': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strings should be compared by value, not reference, so this should be if command[0] == '':
.
For the record, jazzband/django-pipeline#590 just merged. |
Addressed the comparison issues @frewsxcv |
Removed the check for an empty first argument as the PR in Django-Pipeline was merged. |
Considering a new django-pipeline release hasn't happened yet, does it make sense to remove it yet? |
Yeah, that doesn't make sense. I've removed the commit to keep the check |
@solkaz New django-pipeline version is out, so that commit could be added again ;) |
Could also bump the required version in setup.py to 1.6.9 if we're going to rely on the 1.6.9 change |
Adding it back now 🎉 Will also update |
Both commits have been uploaded |
@j0hnsmith could you merge this now that django-pipeline has been updated? |
Alternatively, if you're looking for help from volunteers like myself or solkaz for maintaining this awesome project, let us know! I'd be happy to help! |
Thanks @solkaz |
@frewsxcv Thanks for the offer, I've invited you to be a collaborator. |
execute_command
are now tuples instead of strings, which is what Django-Pipeline expects.PermissionError
s; the first element incommand
cannot be an empty string, so it will check for that. Becomes unnecessary after this PR is mergedis_outdated
method, as output isn't returned fromexecute_command
so it's captured asstdout_captured