mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-17 15:53:39 -05:00
Remove submodules and disable GO15VENDOREXPERIMENT (#430)
Having submodules causes vim-plug or other vim plugin managers to clone them with no real benefit to the end-users. There's currently no compelling reason for me to use submodules.
This commit is contained in:
@@ -41,8 +41,8 @@ android-build:
|
||||
rm -f $(RELEASEARM7)
|
||||
|
||||
test:
|
||||
GO15VENDOREXPERIMENT=1 go get
|
||||
GO15VENDOREXPERIMENT=1 SHELL=/bin/sh go test -v ./...
|
||||
go get
|
||||
SHELL=/bin/sh go test -v ./...
|
||||
|
||||
install: $(BINDIR)/fzf
|
||||
|
||||
@@ -53,10 +53,10 @@ clean:
|
||||
cd fzf && rm -f fzf-*
|
||||
|
||||
fzf/$(BINARY32): $(SOURCES)
|
||||
cd fzf && GO15VENDOREXPERIMENT=1 GOARCH=386 CGO_ENABLED=1 go build -a -o $(BINARY32)
|
||||
cd fzf && GOARCH=386 CGO_ENABLED=1 go build -a -o $(BINARY32)
|
||||
|
||||
fzf/$(BINARY64): $(SOURCES)
|
||||
cd fzf && GO15VENDOREXPERIMENT=1 go build -a -tags "$(TAGS)" -o $(BINARY64)
|
||||
cd fzf && go build -a -tags "$(TAGS)" -o $(BINARY64)
|
||||
|
||||
$(BINDIR)/fzf: fzf/$(BINARY64) | $(BINDIR)
|
||||
cp -f fzf/$(BINARY64) $(BINDIR)
|
||||
|
||||
1
src/vendor/github.com/junegunn/go-runewidth
generated
vendored
1
src/vendor/github.com/junegunn/go-runewidth
generated
vendored
Submodule src/vendor/github.com/junegunn/go-runewidth deleted from 63c378b851
1
src/vendor/github.com/junegunn/go-shellwords
generated
vendored
1
src/vendor/github.com/junegunn/go-shellwords
generated
vendored
Submodule src/vendor/github.com/junegunn/go-shellwords deleted from 35d512af75
Reference in New Issue
Block a user