CompileDaemon
CompileDaemon copied to clipboard
Very simple compile daemon for Go
Add undocumented build command working directory flags and behavior to the README file.
Dockerfile: ```dockerfile FROM golang:1.20 ENV GO111MODULE=on \ CGO_ENABLED=0 \ GOOS=linux \ GOARCH=amd64 WORKDIR /server COPY go.mod . COPY go.sum . RUN go mod download COPY cmd ./cmd/ COPY pkg ./pkg/...
I faced a Problem with joined arguments, like `CompileDaemon -build="go build -gcflags 'all=-N -l'" `
Fixes #92 Description: This PR updates the method used to install CompileDaemon by switching from `go get` to `go install` with explicit version control (@latest). Changes Made: Replaced `go get...
`go install github.com/githubnemo/CompileDaemon@latest` this worked for me! _Originally posted by @ugurozsahin in https://github.com/githubnemo/CompileDaemon/issues/75#issuecomment-1086355265_ please add this to the repo readme