Skip to content

Commit 945bd4b

Browse files
committed
incorporate patch from Sascha Brossmann to fix #15
1 parent 476d152 commit 945bd4b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docsource/history.rst

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Release History
33
===============
44

5+
1.18.1
6+
7+
- Incorporate patch from Sascha Brossmann to fix a issue #15. Directory normalization was causing ``WORKON_HOME`` to appear to be a missing directory if there were control characters in the output of ``pwd``.
8+
59
1.18
610

711
- Remove warning during installation if sphinxcontrib.paverutils is not installed. (#10)

pavement.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
# What project are we building?
2929
PROJECT = 'virtualenvwrapper'
30-
VERSION = '1.18'
30+
VERSION = '1.18.1'
3131
os.environ['VERSION'] = VERSION
3232

3333
# Read the long description to give to setup

virtualenvwrapper_bashrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ fi
2929

3030
# Normalize the directory name in case it includes
3131
# relative path components.
32-
WORKON_HOME=$(cd "$WORKON_HOME"; pwd)
32+
WORKON_HOME=$(sh -c 'cd "$WORKON_HOME"; pwd')
3333
export WORKON_HOME
3434

3535
# Verify that the WORKON_HOME directory exists

0 commit comments

Comments
 (0)