From f648b251bf019435e176bbb17e4258b30a58e488 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 26 Oct 2020 17:49:21 +0100 Subject: [PATCH] Remove yq target and newline test target --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index b77060e6..af6ffbf4 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ default: test test: - @docker run -it --rm -v "$(pwd):/workdir" docker:dind apk add bats && bats test.bats - -dev-install-yq: - @wget https://github.com/mikefarah/yq/releases/download/3.3.2/yq_linux_amd64 && \ - chmod +x yq_linux_amd64 && \ - mv yq_linux_amd64 ~/.local/bin/yq + @docker run \ + -it \ + --rm \ + -v "$(pwd):/workdir" \ + docker:dind \ + apk add bats && bats test.bats docopt: @if [ ! -d ".venv" ]; then \ @@ -19,4 +19,4 @@ docopt: coverage: @kcov coverage kcov -.PHONY: test dev-install-yq docopt coverage +.PHONY: test docopt coverage