diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-09-24 17:13:00 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-09-24 17:13:00 +0200 |
commit | 2b9009385839d6dc33beabd4eb833b179d4693f4 (patch) | |
tree | 4ccd476547f39a66ce37db00472d75d70f17e4c9 /jjb/global | |
parent | 7a33a35410cb0daf1ab730e894ef827823dfed35 (diff) |
macros, docs, releng: Use `sudo -H` pip install
This is still far from a clean and secure approach, as `pip install`
should not be ran with `sudo`.
However, `-H` limits the area we touch and also fixes some incompat
between disto-provided pip and pip-provided pip.
Change-Id: I0e19dfeaf66f6f453e3868c71016305ae050f0c8
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'jjb/global')
-rw-r--r-- | jjb/global/releng-macros.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/global/releng-macros.yaml b/jjb/global/releng-macros.yaml index 8055fdbdf..fe24ed56d 100644 --- a/jjb/global/releng-macros.yaml +++ b/jjb/global/releng-macros.yaml @@ -420,7 +420,7 @@ - shell: | #!/bin/bash # Install python package - sudo pip install "flake8==2.6.2" + sudo -H pip install "flake8==2.6.2" echo "Checking python code..." for f in $(egrep '\.py$' modified_files) @@ -438,7 +438,7 @@ - shell: | #!/bin/bash # sudo Install python packages - sudo pip install "yamllint==1.8.2" + sudo -H pip install "yamllint==1.8.2" echo "Checking yaml file..." for f in $(egrep '\.ya?ml$' modified_files) |