2024-06-09 23:31:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
export SSH_PRIVATEKEY="$(cat ~/.ssh/upload_key)"
|
2024-06-12 13:31:00 +02:00
|
|
|
export BB_HOST=baseband.com.de
|
2024-06-10 17:05:54 +02:00
|
|
|
if [ "$BB_PORT" = '' ] ; then
|
|
|
|
export BB_PORT=46338
|
|
|
|
fi
|
|
|
|
if [ "$BB_PATH" = '' ] ; then
|
|
|
|
export BB_PATH="/root/baseband/rewrite"
|
|
|
|
fi
|
2024-06-09 23:31:27 +02:00
|
|
|
|
2024-06-12 09:49:58 +02:00
|
|
|
bash scripts/push_file.sh Server/build/libs/BaseBand-Server.jar
|
2024-10-04 21:01:23 +02:00
|
|
|
bash scripts/push_file.sh Client/build/proguard/BaseBand-release.jar
|
|
|
|
bash scripts/push_file.sh Loader/build/proguard/BaseBand-main.jar
|