diff --git a/.gitignore b/.gitignore index bc8733f..f1b5acc 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,6 @@ # Go workspace file go.work + +# Folders +/bin/ \ No newline at end of file diff --git a/Makefile b/Makefile index 7931b9b..6eed1df 100644 --- a/Makefile +++ b/Makefile @@ -10,13 +10,8 @@ BLUE = \033[0;34m COLOR_END = \033[0;39m build: - @echo "$(BLUE)» Building fault detector application... $(COLOR_END)" - @CGO_ENABLED=0 go build -v ./... - @echo "$(GREEN) Binary successfully built$(COLOR_END)" - -build-app: @echo "$(BLUE)» Building fault detector application binary... $(COLOR_END)" - @CGO_ENABLED=0 go build -a -o bin/$(APP_NAME) ./cmd/ + @CGO_ENABLED=0 go build -a -v -o bin/$(APP_NAME) ./cmd/ @echo "$(GREEN) Binary successfully built$(COLOR_END)" run-app: diff --git a/bin/faultdetector b/bin/faultdetector deleted file mode 100755 index 02c21b2..0000000 Binary files a/bin/faultdetector and /dev/null differ