mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:18:23 +00:00
13 lines
286 B
Bash
Executable File
13 lines
286 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sbinDir=$(cd "$(dirname "$0")"; pwd)
|
|
baseDir=$(cd "$sbinDir/.." && pwd -P)
|
|
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 |