diff --git a/litepipe.go b/litepipe.go index b6502b6..3678cb9 100644 --- a/litepipe.go +++ b/litepipe.go @@ -66,7 +66,7 @@ func setDefaultsAndValidateConfig() { func start() { http.HandleFunc("/", HandleWebhook) - fmt.Println("\n\033[30;46m LitePipe \033[0m version 0.1.6") + fmt.Println("\n\033[30;46m LitePipe \033[0m version 0.1.4") fmt.Printf("PID: %d\n", os.Getpid()) fmt.Printf("Listening on port %d\n\n", config.Port) @@ -91,7 +91,6 @@ type GitPushEvent struct { } func HandleWebhook(w http.ResponseWriter, r *http.Request) { - fmt.Println(io.ReadAll(r.Body)) body, err := io.ReadAll(r.Body) if err != nil { http.Error(w, "Failed to read request body", http.StatusInternalServerError)