Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some more changes #2042

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
Loading