mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge pull request #5 from FooBarQuaxx/bug/pipenv-where
Fix where command invocation
This commit is contained in:
@@ -1 +1,4 @@
|
||||
/.venv
|
||||
*.pyc
|
||||
.cache
|
||||
pipenv.egg-info/
|
||||
|
||||
+3
-3
@@ -394,8 +394,8 @@ def init(dev=False):
|
||||
@click.command()
|
||||
@click.option('--virtualenv', '--venv', '-v', is_flag=True, default=False)
|
||||
@click.option('--bare', '-b', is_flag=True, default=False)
|
||||
def where(virtualenv=False, bare=False):
|
||||
do_where(virtualenv, bare)
|
||||
def where(venv=False, bare=False):
|
||||
do_where(venv, bare)
|
||||
|
||||
|
||||
@click.command()
|
||||
@@ -469,4 +469,4 @@ cli.add_command(check)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
cli()
|
||||
cli()
|
||||
|
||||
+1
-1
@@ -224,4 +224,4 @@ def run(command, block=True):
|
||||
if block:
|
||||
c.block()
|
||||
|
||||
return c
|
||||
return c
|
||||
|
||||
Reference in New Issue
Block a user