Skip to content

Commit

Permalink
some more changes (#2042)
Browse files Browse the repository at this point in the history
* some more changes

* update pipelines init
  • Loading branch information
raulb authored Dec 20, 2024
1 parent 8d3395b commit 6183101
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ FROM golang:1.23-bullseye AS base

# Install core tools
RUN apt-get update && \
apt-get install -y curl && \
apt-get install -y build-essential && \
apt-get install -y git

# Build the full app binary
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build: check-go-version
go build -ldflags "-X 'github.com/conduitio/conduit/pkg/conduit.version=${VERSION}'" -o conduit ./cmd/conduit/main.go
@echo "\nBuild complete. Enjoy using Conduit!"
@echo "Get started by running:"
@echo " ./conduit"
@echo " ./conduit run"

.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion cmd/conduit/root/pipelines/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func (c *InitCommand) Execute(_ context.Context) error {

fmt.Printf(`Your pipeline has been initialized and created at %s.
To run the pipeline, simply run 'conduit'.`, c.configFilePath)
To run the pipeline, simply run 'conduit run'.`, c.configFilePath)

return nil
}

0 comments on commit 6183101

Please sign in to comment.