Ver código fonte

Remove integration test executables on `make clean` (#2340)

tags/v1.2.0-rc1
Sandro Santilli 6 anos atrás
pai
commit
100ec93a65
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Makefile

+ 1
- 1
Makefile Ver arquivo

@@ -54,7 +54,7 @@ all: build
.PHONY: clean
clean:
$(GO) clean -i ./...
rm -rf $(EXECUTABLE) $(DIST) $(BINDATA)
rm -rf $(EXECUTABLE) $(DIST) $(BINDATA) integrations*.test

required-gofmt-version:
@$(GO) version | grep -q '\(1.7\|1.8\)' || { echo "We require go version 1.7 or 1.8 to format code" >&2 && exit 1; }

Carregando…
Cancelar
Salvar