8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm helperbot.tgz
|
|
cd cmd
|
|
go build -o helperbot
|
|
tar -zcvf ../helperbot.tgz helperbot helperbot.service plugins
|
|
cd ..
|