File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,22 +14,22 @@ set -xe
1414cd $BASEDIR
1515
1616# sync repos and produce some data
17- sh $PATH_TO_SCRIPTS /sync_repos.sh
17+ $PATH_TO_SCRIPTS /sync_repos.sh
1818
1919# gather data and produce WIP files for the next scripts to use
20- python $PATH_TO_SCRIPTS /rpmwatcher_update.py $VERSION .
20+ $PATH_TO_SCRIPTS /rpmwatcher_update.py $VERSION .
2121
2222# get information about the dependencies, from within a CentOS docker container
2323# using "host" network because "bridge" may fail in some hosting environments
2424DOCKER_NETWORK=host
2525docker run --rm -t --privileged --network $DOCKER_NETWORK \
2626 -v ~ /data:/data -v ~ /git/xcp/scripts/rpmwatcher:/scripts centos:$CENTOS_VERSION \
27- python /scripts/rpmwatcher_extract_deps.py $VERSION /data
27+ /scripts/rpmwatcher_extract_deps.py $VERSION /data
2828
2929# compute roles
30- python $PATH_TO_SCRIPTS /rpmwatcher_extract_roles.py $VERSION .
30+ $PATH_TO_SCRIPTS /rpmwatcher_extract_roles.py $VERSION .
3131
3232# produce reports
33- python $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . html
34- python $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . markdown
35- python $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . csv
33+ $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . html
34+ $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . markdown
35+ $PATH_TO_SCRIPTS /rpmwatcher_format_reports.py $VERSION . csv
You can’t perform that action at this time.
0 commit comments