diff options
author | Sergey Stankevich <sergey.stankevich@gmail.com> | 2013-10-19 16:10:59 +0300 |
---|---|---|
committer | Sergey Stankevich <sergey.stankevich@gmail.com> | 2013-10-19 16:11:24 +0300 |
commit | 65bf6fe8b6cf23050e755d62291f56f7e8654ede (patch) | |
tree | 1fdff6500e77ee06d1b77adc4dc92849e285131d | |
parent | 94f0993b4f37a7f64bcf54f885f69f9de3a7ccc3 (diff) |
pip log option. Fixes #28
-rw-r--r-- | manifests/pip.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/pip.pp b/manifests/pip.pp index 8bd21d3..3ca33a8 100644 --- a/manifests/pip.pp +++ b/manifests/pip.pp @@ -88,7 +88,7 @@ define python::pip ( case $ensure { present: { exec { "pip_install_${name}": - command => "$pip_env --log-file ${cwd}/pip.log install $install_args ${proxy_flag} ${source}", + command => "$pip_env --log ${cwd}/pip.log install $install_args ${proxy_flag} ${source}", unless => "$pip_env freeze | grep -i -e ${grep_regex}", user => $owner, environment => $environment, |