]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-ansible-syntax: fix path to pip
authorGuillaume Abrioux <gabrioux@redhat.com>
Thu, 11 Oct 2018 14:11:19 +0000 (16:11 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Thu, 11 Oct 2018 14:11:19 +0000 (16:11 +0200)
`$VENV` contains already '/bin/' pattern.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
ceph-ansible-pr-syntax-check/build/build

index 4d5814c89d8aa216ca657eb360c0da993284828b..f5b8f9486ea9202a3605f0d439e8c9c19229e994 100644 (file)
@@ -8,7 +8,7 @@ pkgs=( "ansible-lint" )
 # force virtualenv to be created earlier for this occurence, so we are not stuck because of ansible-lint dependencie,
 # which would enforce latest ansible version to be installed.
 virtualenv $TEMPVENV
-"$VENV"/bin/pip install -r <(grep ansible "$WORKSPACE"/tests/requirements.txt)
+"$VENV"/pip install -r <(grep ansible "$WORKSPACE"/tests/requirements.txt)
 install_python_packages "pkgs[@]"