mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
Resolve linter errors exposed by fixed Makefile
- TravisCI didn't like "POSIX" ::= syntax
This commit is contained in:
6
Makefile
6
Makefile
@@ -1,11 +1,11 @@
|
||||
SHELL = /bin/sh
|
||||
|
||||
SRC ::= $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
||||
PKGS ::= $(shell go list ./... | grep -v /vendor/)
|
||||
SRC := $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
||||
PKGS := $(shell go list ./... | grep -v /vendor/)
|
||||
|
||||
.PHONY: all build clean fmt lint simplify test
|
||||
|
||||
commands ::= client inbucket
|
||||
commands = client inbucket
|
||||
|
||||
all: clean test lint build
|
||||
|
||||
|
||||
Reference in New Issue
Block a user