Skip to content

Commit

Permalink
Removed multiline backslashes from the execution statement, since thi…
Browse files Browse the repository at this point in the history
…s can cause issues with vagrant, linux guest, windows host and shared folders
  • Loading branch information
schacki committed May 20, 2013
1 parent b705569 commit d12046e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions manifests/virtualenv.pp
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,7 @@


exec { "python_virtualenv_${venv_dir}":
command => "mkdir -p ${venv_dir} \
${proxy_command} \
&& virtualenv -p `which ${python}` ${system_pkgs_flag} ${venv_dir} \
&& ${venv_dir}/bin/pip install ${pypi_index} ${proxy_flag} --upgrade ${distribute_pkg} pip",
command => "mkdir -p ${venv_dir} ${proxy_command} && virtualenv -p `which ${python}` ${system_pkgs_flag} ${venv_dir} && ${venv_dir}/bin/pip install ${pypi_index} ${proxy_flag} --upgrade ${distribute_pkg} pip",
user => $owner,
creates => $venv_dir,
path => [ '/bin', '/usr/bin', '/usr/sbin' ],
Expand Down

0 comments on commit d12046e

Please sign in to comment.