Merge pull request #134 from nateprewitt/only_write_when_changed

only write file when changed
This commit is contained in:
2017-01-27 23:14:40 -05:00
committed by GitHub
+2 -2
View File
@@ -139,8 +139,8 @@ def ensure_proper_casing():
if casing_changed:
click.echo(crayons.yellow('Fixing package names in Pipfile...'))
# Write pipfile out to disk.
project.write(p)
# Write pipfile out to disk.
project.write(p)
def do_where(virtualenv=False, bare=True):