Browse code

Merge "Fix typo in error message printed if ran under virtualenv"

Jenkins authored on 2015/11/13 08:48:19
Showing 1 changed files
... ...
@@ -99,10 +99,10 @@ fi
99 99
 # this explicit as it has come up on the mailing list.
100 100
 if [[ -n "$VIRTUAL_ENV" ]]; then
101 101
     echo "You appear to be running under a python virtualenv."
102
-    echo "DevStack does not support this, as we my break the"
102
+    echo "DevStack does not support this, as we may break the"
103 103
     echo "virtualenv you are currently in by modifying "
104 104
     echo "external system-level components the virtualenv relies on."
105
-    echo "We reccommend you use a separate virtual-machine if "
105
+    echo "We recommend you use a separate virtual-machine if "
106 106
     echo "you are worried about DevStack taking over your system."
107 107
     exit 1
108 108
 fi