go-pingbot/nodemon.sh
Medzik 021fc6ea62 update
- updated bash scripts
- renamed env schema
- updated binary archive from tar.gz to tar.xz
- update workflows
2021-09-01 12:49:56 +00:00

20 lines
361 B
Bash
Executable file

#!/usr/bin/env bash
# Colors
green="\e[0;92m"
red="\e[0;91m"
nc="\e[0m" # No Color
printf "${nc}[${green}Start${nc}]\n"
if ! go build -o pingbot.out; then
printf "${nc}[${red}COMPILE ERROR${nc}]\n"
exit 1
else
if ! ./pingbot.out; then
printf "${nc}[${red}PROGRAM PANIC${nc}]\n"
exit 1
else
printf "${nc}[${red}PROGRAM END${nc}]\n"
fi
fi