This commit is contained in:
2017-01-22 00:16:33 -05:00
parent b97e12a6c9
commit 48b46a6e5b
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ from . import _pipfile as pipfile
from .project import Project
from .utils import convert_deps_from_pip, convert_deps_to_pip
__version__ = '0.1.11'
__version__ = '0.1.12'
project = Project()
@@ -372,12 +372,12 @@ def shell():
@click.command(help="Spans a command installed into the virtualenv.")
@click.argument('command')
@click.argument('args', nargs=-1)
def run(command):
def run(command, args):
# Ensure that virtualenv is available.
ensure_project()
# Spawn the new process, and iteract with it.
c = pexpect.spawn('{0} {1}'.format(which(command), ' '.join(args))
c = pexpect.spawn('{0} {1}'.format(which(command), ' '.join(args)))
# Interact with the new shell.
c.interact()
+1 -1
View File
@@ -35,7 +35,7 @@ required = [
setup(
name='pipenv',
version='0.1.11',
version='0.1.12',
description='Sacred Marriage of Pipfile, Pip, & Virtualenv.',
long_description=long_description,
author='Kenneth Reitz',