mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-15 20:06:10 +05:00
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT=${PWD}
|
|
|
|
#### Build web
|
|
echo "Build web"
|
|
go run gen_web.go
|
|
|
|
sudo docker run --rm -v "$PWD":/usr/src/torr -v ~/go/pkg/mod:/go/pkg/mod -w /usr/src/torr golang:1.17.5-stretch ./build-all.sh
|
|
sudo chmod 0777 ./dist/* |