Merge pull request #5 from FooBarQuaxx/bug/pipenv-where

Fix where command invocation
This commit is contained in:
2017-01-21 13:47:15 -05:00
committed by GitHub
4 changed files with 10 additions and 5 deletions
+3
View File
@@ -1 +1,4 @@
/.venv
*.pyc
.cache
pipenv.egg-info/
+3 -3
View File
@@ -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
View File
@@ -224,4 +224,4 @@ def run(command, block=True):
if block:
c.block()
return c
return c
+3 -1
View File
@@ -29,7 +29,9 @@ required = [
'toml',
'click',
'pip',
'virtualenv'
'virtualenv',
'pexpect',
'daemon',
]
setup(