From 3fc1bea3676bc3f72406d67f85c127bcb043a308 Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Sat, 23 Sep 2017 21:23:31 -0700 Subject: [PATCH] Fix make clean command(#65) In Swift PM 4, clean is `swift package clean` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 574d230d..ef7030c1 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ all: clean build test integration_test archive clean: - xcrun swift build --clean + xcrun swift package clean lint: ./Utility/lint.sh