mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:51:00 +00:00
* [improvement] add some features * [improvement] revise CHANGELOG --------- Co-authored-by: zuopengge <hwzuopengge@tencent.com>
13 lines
268 B
Bash
Executable File
13 lines
268 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sbinDir=$(cd "$(dirname "$0")"; pwd)
|
|
baseDir=$(readlink -f $sbinDir/../)
|
|
runtimeDir=$baseDir/runtime
|
|
buildDir=$baseDir/build
|
|
|
|
cd $baseDir
|
|
|
|
#1. move package to build
|
|
cp $baseDir/../launchers/chat/target/*.tar.gz ${buildDir}/supersonic-chat.tar.gz
|
|
|