Skip to content

Commit

Permalink
fixed venv dir of bundle, added bundle to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
msbt committed Mar 4, 2014
1 parent 6643e9a commit 0199122
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ crate.egg-info
/devtools/parts/
/devtools/develop-eggs/
/devtools/.installed.cfg
/devtools/crash.zip.py
/devtools/crash-*.zip.py
/devtools/venv/
4 changes: 2 additions & 2 deletions devtools/bundle.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
WORKING_DIR=`dirname $0`
VENV_DIR="${WORKING_DIR}/venv"
VENV_DIR="venv"
VERSION=`sed -n 's/^__version__ = "\(.*\)".*$/\1/p' ${WORKING_DIR}/../src/crate/client/__init__.py`
BUNDLE_FILE="crash-${VERSION}.zip.py"

Expand All @@ -26,7 +26,7 @@ fi

mkdir -p venv
virtualenv --no-site-packages --clear ${VENV_DIR}
PYTHON_EXECUTABLE=./${VENV_DIR}/bin/python
PYTHON_EXECUTABLE=${VENV_DIR}/bin/python
${VENV_DIR}/bin/easy_install readline
${PYTHON_EXECUTABLE} bootstrap.py
${PYTHON_EXECUTABLE} bin/buildout -N
Expand Down

0 comments on commit 0199122

Please # to comment.