mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
13 lines
365 B
Bash
Executable File
13 lines
365 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -z "${MUSIKCUBE_BUILD_HOST_IP}" ]]; then
|
|
exit
|
|
fi
|
|
|
|
if [[ -z "${MUSIKCUBE_BUILD_HOST_PW}" ]]; then
|
|
exit
|
|
fi
|
|
|
|
sshpass -p "${MUSIKCUBE_BUILD_HOST_PW}" scp /root/rpms/* build@${MUSIKCUBE_BUILD_HOST_IP}:/home/build/ 2> /dev/null
|
|
sshpass -p "${MUSIKCUBE_BUILD_HOST_PW}" scp /root/debs/* build@${MUSIKCUBE_BUILD_HOST_IP}:/home/build/ 2> /dev/null
|