mirror of
https://github.com/rustdesk/rustdesk-server.git
synced 2024-11-28 07:39:30 +08:00
21 lines
493 B
Bash
Executable File
21 lines
493 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# https://blog.cmj.tw/SynologyApp.htm 暂时不搞签名
|
|
/bin/rm -rf package
|
|
mkdir package
|
|
cd package
|
|
mkdir bin logs config
|
|
echo port=21116 > config/hbbs.conf
|
|
echo key= >> config/hbbs.conf
|
|
echo port=21117 > config/hbbr.conf
|
|
echo key= >> config/hbbr.conf
|
|
cp ../target/release/hbbs bin/
|
|
cp ../target/release/hbbr bin/
|
|
strip bin/hbbs
|
|
strip bin/hbbr
|
|
tar czf ../spk/package.tgz ./*
|
|
cd ..
|
|
cd spk
|
|
VER=1.1.3
|
|
tar cf RustDeskServer-x64-$VER.spk ./*
|
|
mv RustDeskServer-x64-$VER.spk ..
|