openqa/dispatcher: fix respin test scheduler

It broke because python3 setup.py install installs binaries
to /usr/local/bin , not /usr/bin, so fedora-openqa is no longer
where the script expects it to be...

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-06-24 15:06:10 -07:00
parent 3bc4b4c0e9
commit 2602d052b0
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@
# schedule openQA jobs for the current 'live-respins' compose; if it's
# already been tested, this will not create any new jobs
/usr/bin/fedora-openqa compose https://dl.fedoraproject.org/pub/alt/live-respins/ > /dev/null 2>&1 || /usr/bin/true
/usr/local/bin/fedora-openqa compose https://dl.fedoraproject.org/pub/alt/live-respins/ > /dev/null 2>&1 || /usr/bin/true