From 8a81904a56b013a88b3e3b9fc14b19af4965cc08 Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Sat, 24 Jan 2015 22:14:13 +0900 Subject: [PATCH] autogen_manpages.sh: Fix the path of virtualenv dir --- tools/autogen_manpages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/autogen_manpages.sh b/tools/autogen_manpages.sh index 96c70055..e6a938f8 100755 --- a/tools/autogen_manpages.sh +++ b/tools/autogen_manpages.sh @@ -17,9 +17,9 @@ done SCRIPT_DIR=$(cd $(dirname $0) && pwd) -VENV=../$SCRIPT_DIR/../venv +VENV=$SCRIPT_DIR/../venv -if ! which virtualenv; then +if ! which virtualenv > /dev/null; then echo "virtualenv not found. Make sure to have virtualenv installed." exit 2 fi -- 2.11.0