Skip to content

Commit b12ad0f

Browse files
committed
rpmwatcher: stop overriding interpreters declared by scripts
Signed-off-by: Yann Dirson <yann.dirson@vates.tech>
1 parent 9c5f623 commit b12ad0f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/rpmwatcher/run.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ set -xe
1414
cd $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
2424
DOCKER_NETWORK=host
2525
docker 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

0 commit comments

Comments
 (0)