mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
13 lines
364 B
Bash
Executable file
13 lines
364 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Local development build script
|
|
npm run build
|
|
cd FCastReceiverService
|
|
dotnet build -c Release
|
|
cd ..
|
|
cd FCastReceiver
|
|
tizen build-web -- .
|
|
cd .buildResult
|
|
tizen package -t wgt -s default -- .
|
|
tizen package -t wgt -s default -r ../../FCastReceiverService/bin/Release/netcoreapp2.1/com.futo.FCastReceiverService-1.0.0.tpk -- FCastReceiver.wgt
|
|
cd ../../
|