Skip to content

Commit

Permalink
refactor: rename binary to rollups-node
Browse files Browse the repository at this point in the history
  • Loading branch information
torives committed Oct 3, 2023
1 parent 534cf2d commit 95cfcf9
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ FROM golang:${GO_VERSION}-bookworm as go-builder
ARG GO_BUILD_PATH
WORKDIR ${GO_BUILD_PATH}
COPY . .
RUN go install -ldflags "-s -w" ./cmd/cartesi-node
RUN go install -ldflags "-s -w" ./cmd/rollups-node

#
# Runtime
Expand Down Expand Up @@ -106,7 +106,7 @@ ENV PATH="${BASE_PATH}/bin:${PATH}"

# Copy Go binary
ARG GO_BIN_PATH
COPY --from=go-builder ${GO_BIN_PATH}/cartesi-node .
COPY --from=go-builder ${GO_BIN_PATH}/rollups-node .

# Setup runtime dir
ARG RUNTIME_DIR
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/cartesi-node/root.go → cmd/rollups-node/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package main
import "github.com/spf13/cobra"

var rootCmd = &cobra.Command{
Use: "cartesi-node",
Use: "rollups-node",
CompletionOptions: cobra.CompletionOptions{HiddenDefaultCmd: true},
DisableFlagsInUseLine: true,
}
Expand Down
File renamed without changes.

0 comments on commit 95cfcf9

Please sign in to comment.