From de2cd76af74e104544455447db8ef6ce2aa74989 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Mon, 19 Nov 2018 01:14:10 -0500 Subject: [PATCH] fix manifest Signed-off-by: Dan Ryan --- MANIFEST.in | 1 + pipenv/vendor/vistir/misc.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3c8eb1d4..d5e7d3d8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -15,6 +15,7 @@ include pipenv/vendor/pipreqs/stdlib pipenv/vendor/pipreqs/mapping include pipenv/vendor/*.txt pipenv/vendor/pexpect/bashrc.sh include pipenv/vendor/Makefile include pipenv/pipenv.1 +include .gitmodules exclude .editorconfig .travis.yml .env appveyor.yml tox.ini pytest.ini exclude Pipfile* CHANGELOG.draft.rst exclude docker-compose.yml Dockerfile diff --git a/pipenv/vendor/vistir/misc.py b/pipenv/vendor/vistir/misc.py index 110766b4..f7ed26b4 100644 --- a/pipenv/vendor/vistir/misc.py +++ b/pipenv/vendor/vistir/misc.py @@ -138,7 +138,6 @@ def _spawn_subprocess(script, env=None, block=True, cwd=None, combine_stderr=Tru return subprocess.Popen(script.cmdify(), **options) - def _create_subprocess( cmd, env=None, @@ -153,7 +152,7 @@ def _create_subprocess( write_to_stdout=True ): if not env: - env = {} + env = os.environ.copy() try: c = _spawn_subprocess(cmd, env=env, block=block, cwd=cwd, combine_stderr=combine_stderr)