We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfaadd commit dd0cb8cCopy full SHA for dd0cb8c
scriptmodules/admin/builder.sh
@@ -61,7 +61,11 @@ function section_builder() {
61
}
62
63
function upload_builder() {
64
- rsync -av --progress --delay-updates "$__tmpdir/archives/" "retropie@$__binary_host:files/binaries/"
+ local host="$__upload_host"
65
+ [[ -z "$host" ]] && host="$__binary_host"
66
+ local port="$__upload_port"
67
+ [[ -z "$port" ]] && port=22
68
+ rsync -av --progress --delay-updates -e "ssh -p $port" "$__tmpdir/archives/" "retropie@$host:files/binaries/"
69
70
71
function clean_archives_builder() {
0 commit comments