Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove quotes around extension in makefile (vercel#3662)
There was an issue with building the go binary on windows. Before this PR: ``` make -p ... go-turbo".exe": internal/turbodprotocol/turbod.pb.go internal/turbodprotocol/turbod_grpc.pb.go go.mod turborepo-ffi-install ... ``` Now dropping the quotes we get the desired build target: ``` make -p ... go-turbo.exe: internal/turbodprotocol/turbod.pb.go internal/turbodprotocol/turbod_grpc.pb.go go.mod turborepo-ffi-install ... ``` and `make go-turbo.exe` works.
- Loading branch information