ConanServerManager/compile.sh

11 lines
No EOL
178 B
Bash
Executable file

#!/bin/bash
rm -rf out/*
if [ ! -d out ]
then
mkdir out
fi
flutter build linux
dart compile exe -o out/server bin/server.dart
cp -rv build/linux/x64/release/bundle out/client