Skip to content

Commit

Permalink
Fix maintenance.sh: tools should use local apps repository
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 12, 2024
1 parent 9369f82 commit 026f3b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maintenance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function rebuild_catalog()
date >> $log
git_pull_and_update_cron_and_restart_services_if_needed
update_app_cache
./tools/list_builder.py &>> $log || sendxmpppy "[listbuilder] Rebuilding the application list failed miserably"
./tools/list_builder.py -l . &>> $log || sendxmpppy "[listbuilder] Rebuilding the application list failed miserably"
}

function autoupdate_app_sources()
Expand All @@ -105,15 +105,15 @@ function autoupdate_app_sources()
git_pull_and_update_cron_and_restart_services_if_needed
update_app_cache
tools/autoupdate_app_sources/venv/bin/python3 tools/autoupdate_app_sources/autoupdate_app_sources.py \
--latest-commit-weekly --edit --commit --pr --paste -j1 \
-l . --latest-commit-weekly --edit --commit --pr --paste -j1 \
&> $log || sendxmpppy "[appsourcesautoupdate] App sources auto-update failed miserably"
}

function update_app_levels()
{
update_app_cache
pushd tools/update_app_levels >/dev/null
python3 update_app_levels.py
python3 update_app_levels.py -l .
popd >/dev/null
}

Expand Down

0 comments on commit 026f3b8

Please sign in to comment.