Skip to content

Commit

Permalink
-a is deprecated and may return False even if the file exists
Browse files Browse the repository at this point in the history
Fixes #3
  • Loading branch information
guewen committed Nov 4, 2014
1 parent d132d20 commit 82ea02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.sh
Expand Up @@ -54,9 +54,9 @@ function create_virtualenv() {
}

function ensure_cfg(){
if [ ! -a buildout.cfg ]
if [ ! -e buildout.cfg ]
then
if [ -a $1 ]
if [ -e $1 ]
then
(cat <<EOF
[buildout]
Expand Down

0 comments on commit 82ea02d

Please sign in to comment.