mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-05-31 23:54:06 +08:00
14 lines
316 B
Bash
Executable file
14 lines
316 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# export TRACE=1
|
|
|
|
. $(dirname $0)/prelude.bash
|
|
|
|
LOOKBACK_INTERVAL=${LOOKBACK_INTERVAL:--2 hours}
|
|
|
|
function main () {
|
|
bin/console sync:dump:plugins --after="$LOOKBACK_INTERVAL" | bin/push-to-aspirecloud
|
|
bin/console sync:dump:themes --after="$LOOKBACK_INTERVAL" | bin/push-to-aspirecloud
|
|
}
|
|
|
|
main "$@"
|