aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdev7
-rw-r--r--dev.bat7
2 files changed, 12 insertions, 2 deletions
diff --git a/dev b/dev
index 457b69cf..9f66cbaf 100755
--- a/dev
+++ b/dev
@@ -3,4 +3,9 @@ VENV=../venv.mitmproxy
virtualenv $VENV
source $VENV/bin/activate
-pip install --src .. -r requirements.txt \ No newline at end of file
+pip install --src .. -r requirements.txt
+
+echo ""
+echo "* Created virtualenv environment in $VENV."
+echo "* Installed all dependencies into the virtualenv."
+echo "* Activated virtualenv environment." \ No newline at end of file
diff --git a/dev.bat b/dev.bat
index ca864806..303c804e 100644
--- a/dev.bat
+++ b/dev.bat
@@ -3,4 +3,9 @@ set VENV=..\venv.mitmproxy
virtualenv %VENV%
call %VENV%\Scripts\activate.bat
-pip install --src .. -r requirements.txt \ No newline at end of file
+pip install --src .. -r requirements.txt
+
+echo.
+echo * Created virtualenv environment in %VENV%.
+echo * Installed all dependencies into the virtualenv.
+echo * Activated virtualenv environment. \ No newline at end of file