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>
6 lines
262 B
Bash
6 lines
262 B
Bash
#!/bin/sh
|
|
|
|
# schedule openQA jobs for the current 'live-respins' compose; if it's
|
|
# already been tested, this will not create any new jobs
|
|
|
|
/usr/local/bin/fedora-openqa compose https://dl.fedoraproject.org/pub/alt/live-respins/ > /dev/null 2>&1 || /usr/bin/true
|