mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
9 lines
239 B
Bash
Executable File
9 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -rf db/backups
|
|
rm -rf static/logs
|
|
mkdir -p static/logs
|
|
go clean
|
|
go build
|
|
zip -r -X cheesy-arena.zip LICENSE README.md ap_config.txt cheesy-arena cheesy-arena.command db font schedules static switch_config.txt templates
|