diff --git a/build.sh b/build.sh index 2240d46..8dcf21d 100755 --- a/build.sh +++ b/build.sh @@ -62,7 +62,7 @@ create_build() { PLATFORM="server" ;; 'd') - printf 'Building for BeagleBone!\n' + printf 'Building for Desktop!\n' GARCH="amd64" PLATFORM="server" ;; @@ -138,7 +138,6 @@ for dev in "$@"; do 'Server') dev='s' ;; 'Desktop') dev='d' ;; esac - echo "$dev" create_build "$dev" done printf 'Nothing else to do!\n' diff --git a/cmd/reactor/main.go b/cmd/reactor/main.go index ae0ed60..1db35e6 100644 --- a/cmd/reactor/main.go +++ b/cmd/reactor/main.go @@ -27,7 +27,6 @@ func NewConfig(fname string) *viper.Viper { } func main() { - // shutdown gracefulShutdown := make(chan os.Signal, 1) signal.Notify(gracefulShutdown, syscall.SIGINT, syscall.SIGTERM) diff --git a/cmd/server/main.go b/cmd/server/main.go index d0bc367..42f6bf5 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -36,7 +36,6 @@ func NewWebSocket() ws { func main() { // lets get this bread - gracefulShutdown := make(chan os.Signal, 1) signal.Notify(gracefulShutdown, syscall.SIGINT, syscall.SIGTERM)