mirror of
https://github.com/syssecfsu/witty.git
synced 2024-11-01 01:29:26 +01:00
12 lines
201 B
Bash
12 lines
201 B
Bash
|
#!/bin/sh
|
||
|
go clean .
|
||
|
go build .
|
||
|
|
||
|
DST="./release"
|
||
|
rm -rf $DST
|
||
|
mkdir $DST
|
||
|
mkdir $DST/tls
|
||
|
mkdir $DST/records
|
||
|
cp tls/README.md $DST/tls/README.md
|
||
|
cp witty LICENSE $DST
|
||
|
echo "[]" > $DST/user.db
|