mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 12:42:50 +00:00
14 lines
344 B
Bash
Executable File
14 lines
344 B
Bash
Executable File
#!/bin/bash
|
|
|
|
function sync_steamos() {
|
|
repo_url="$1"
|
|
repo_dir="$2"
|
|
|
|
[ ! -d "$repo_dir" ] && mkdir -p "$repo_dir"
|
|
cd $repo_dir
|
|
lftp "${repo_url}/" -e "mirror --verbose --exclude icons/ -P 5 --delete --only-newer; bye"
|
|
}
|
|
|
|
BASE_URL=${TUNASYNC_UPSTREAM_URL:-"http://repo.steampowered.com"}
|
|
sync_steamos "${BASE_URL}" "${TUNASYNC_WORKING_DIR}"
|