Skip to content

Commit

Permalink
Update to cronberry 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Feb 5, 2024
1 parent 5c2e3d9 commit c94aea0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024 Alec Delaney
# SPDX-License-Identifier: MIT

cronberry~=2.1 # This is installed via pipx
cronberry~=3.1 # This is installed via pipx
10 changes: 5 additions & 5 deletions scripts/schedule_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

REPOPATH=$(realpath .)

PYTHONBIN="$REPOPATH/.venv/bin/python"
PYBINPATH="$REPOPATH/.venv/bin"

UPDATESCRIPTPATH="$REPOPATH/scripts/graphql.py"
UPDATECOMMAND="55 * * * * $PYTHONBIN $UPDATESCRIPTPATH $REPOPATH"
UPDATECOMMAND="55 * * * * python $UPDATESCRIPTPATH $REPOPATH"
UPDATEJOBNAME=$(echo "$REPOPATH" | xargs basename)

DELETESCRIPTPATH="$REPOPATH/scripts/post_graphql.py"
DELETECOMMAND="5 * * * * $PYTHONBIN $DELETESCRIPTPATH $REPOPATH"
DELETECOMMAND="5 * * * * python $DELETESCRIPTPATH $REPOPATH"
DELETEJOBNAME=$(echo "$REPOPATH" | xargs basename)

cronberry enter "Cache new cards for $UPDATEJOBNAME" "$UPDATECOMMAND" --overwrite
cronberry enter "Delete old cards for $DELETEJOBNAME" "$DELETECOMMAND" --overwrite
cronberry enter "Cache new cards for $UPDATEJOBNAME" "$UPDATECOMMAND" --path "$PYBINPATH" --overwrite
cronberry enter "Delete old cards for $DELETEJOBNAME" "$DELETECOMMAND" --path "$PYBINPATH" --overwrite

0 comments on commit c94aea0

Please sign in to comment.