Skip to content

Commit

Permalink
Merge pull request #9 from grafana/main
Browse files Browse the repository at this point in the history
Chore: Update to main
Jayclifford345 authored Oct 31, 2023
2 parents 36ae086 + 13c0268 commit 566bc38
Showing 867 changed files with 37,343 additions and 22,501 deletions.
185 changes: 33 additions & 152 deletions .betterer.results

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion .bingo/Variables.mk
Original file line number Diff line number Diff line change
@@ -2,7 +2,12 @@
# All tools are designed to be build inside $GOBIN.
BINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
GOPATH ?= $(shell go env GOPATH)
GOBIN ?= $(firstword $(subst :, ,${GOPATH}))/bin
ifeq ($(OS),Windows_NT)
PATHSEP := $(if $(COMSPEC),;,:)
GOBIN ?= $(firstword $(subst $(PATHSEP), ,$(subst \,/,${GOPATH})))/bin
else
GOBIN ?= $(firstword $(subst :, ,${GOPATH}))/bin
endif
GO ?= $(shell which go)

# Below generated variables ensure that every time a tool under each variable is invoked, the correct version
Loading

0 comments on commit 566bc38

Please sign in to comment.