mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireSync.git
synced 2026-07-17 09:56:39 +08:00
12 lines
141 B
Bash
Executable file
12 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. $(dirname $0)/prelude.bash
|
|
|
|
TMPDIR=${TMPDIR:-/tmp}
|
|
|
|
function main () {
|
|
bin/update-sync
|
|
bin/push-sync
|
|
}
|
|
|
|
main "$@"
|