From d595b085929076de937807e5194ccc32aa22ec79 Mon Sep 17 00:00:00 2001 From: pk Date: Wed, 28 May 2025 10:38:47 +0200 Subject: [PATCH] Fix pipeline --- main.go | 2 +- watch.go | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 4e5cc93..d37a5b2 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ func main() { app := &cli.App{ Name: "gowebbuild", Usage: "All in one tool to build web frontend projects.", - Version: "7.1.0", + Version: "7.1.1", Authors: []*cli.Author{{ Name: "trading-peter (https://github.com/trading-peter)", }}, diff --git a/watch.go b/watch.go index c1ee129..279ec05 100644 --- a/watch.go +++ b/watch.go @@ -96,9 +96,7 @@ func watchAction(ctx *cli.Context) error { go func() { for range reqBuildCh { - cp(opts) - build(opts) - replace(opts) + pipeline(opts) } }() }