mortar 0.9.6 → 0.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/mortar/local/python.rb +2 -1
- data/lib/mortar/version.rb +1 -1
- metadata +3 -3
data/lib/mortar/local/python.rb
CHANGED
|
@@ -111,12 +111,13 @@ class Mortar::Local::Python
|
|
|
111
111
|
true
|
|
112
112
|
end
|
|
113
113
|
}
|
|
114
|
+
false
|
|
114
115
|
end
|
|
115
116
|
|
|
116
117
|
# Checks if the specified python command has
|
|
117
118
|
# virtualenv installed
|
|
118
119
|
def has_virtualenv_installed(python)
|
|
119
|
-
`#{python} -m virtualenv --help`
|
|
120
|
+
`#{python} -m virtualenv --help 2>&1`
|
|
120
121
|
if (0 != $?.to_i)
|
|
121
122
|
false
|
|
122
123
|
else
|
data/lib/mortar/version.rb
CHANGED
metadata
CHANGED