mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
Makefile: remove unnecessary glide binary check
Signed-off-by: Koichi Shiraishi <zchee.io@gmail.com>
This commit is contained in:
parent
81fb06c4f7
commit
b35ae0fa92
2
Makefile
2
Makefile
|
|
@ -8,7 +8,7 @@ VERSION=$(patsubst "%",%,$(lastword $(shell grep 'const version' peco.go)))
|
|||
RELEASE_DIR=releases
|
||||
ARTIFACTS_DIR=$(RELEASE_DIR)/artifacts/$(VERSION)
|
||||
SRC_FILES = $(wildcard *.go cmd/peco/*.go internal/*/*.go)
|
||||
HAVE_GLIDE:=$(shell (test -e $(INTERNAL_BIN_DIR)/$(THIS_GOOS)/$(THIS_GOARCH)/glide || which glide >/dev/null 2>&1 ) && echo "yes")
|
||||
HAVE_GLIDE:=$(shell test -e $(INTERNAL_BIN_DIR)/$(THIS_GOOS)/$(THIS_GOARCH)/glide && echo "yes")
|
||||
GITHUB_USERNAME=peco
|
||||
BUILD_TARGETS= \
|
||||
build-linux-arm64 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue