15 lines
289 B
Bash
Executable File
15 lines
289 B
Bash
Executable File
#! /bin/bash
|
|
|
|
cd ..
|
|
|
|
# Compile for Linux
|
|
pyinstaller imagevideoupscaler.spec
|
|
cp -r ./dist/imagevideoupscaler/* ./frontend/
|
|
|
|
|
|
# Copy python files
|
|
cp -r ./bin ./frontend/
|
|
cp -r ./config ./frontend/
|
|
cp ./imagevideoupscaler-cli.py ./frontend/
|
|
cp ./LICENSE ./frontend/
|
|
cp ./logo.png ./frontend/ |