Skip to content

Commit 6183101

Browse files
authored
some more changes (#2042)
* some more changes * update pipelines init
1 parent 8d3395b commit 6183101

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Diff for: Dockerfile

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ FROM golang:1.23-bullseye AS base
33

44
# Install core tools
55
RUN apt-get update && \
6-
apt-get install -y curl && \
7-
apt-get install -y build-essential && \
86
apt-get install -y git
97

108
# Build the full app binary

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build: check-go-version
1212
go build -ldflags "-X 'github.com/conduitio/conduit/pkg/conduit.version=${VERSION}'" -o conduit ./cmd/conduit/main.go
1313
@echo "\nBuild complete. Enjoy using Conduit!"
1414
@echo "Get started by running:"
15-
@echo " ./conduit"
15+
@echo " ./conduit run"
1616

1717
.PHONY: test
1818
test:

Diff for: cmd/conduit/root/pipelines/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ func (c *InitCommand) Execute(_ context.Context) error {
244244

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

249249
return nil
250250
}

0 commit comments

Comments
 (0)