Skip to content

Commit

Permalink
When checking if we have a working go executable, do not suppress std…
Browse files Browse the repository at this point in the history
…err since that should provide useful info when needed.
  • Loading branch information
SpicyLemon committed Aug 23, 2024
1 parent da47ef7 commit d66fdfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ifeq (,$(GO))
endif
endif
# Make sure we have a working go executable since most stuff in here needs it.
ifeq ("$(shell $(GO) version > /dev/null 2>&1 || echo nogo)","nogo")
ifeq ("$(shell $(GO) version > /dev/null || echo nogo)","nogo")
$(error Could not find go. Is it in PATH? $(GO))
endif
ifeq (,$(GOPATH))
Expand Down

0 comments on commit d66fdfd

Please sign in to comment.