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
284 B
Bash
Executable File
13 lines
284 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sbinDir=$(cd "$(dirname "$0")"; pwd)
|
|
baseDir=$(readlink -f $sbinDir/../)
|
|
buildDir=$baseDir/build
|
|
|
|
cd $baseDir/bin
|
|
sh build-standalone.sh
|
|
|
|
cd $buildDir
|
|
tar xvf supersonic-webapp.tar.gz
|
|
mv supersonic-webapp webapp
|
|
mv webapp ../../launchers/standalone/target/classes |