summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2947b97..6d9c819 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-.PHONY: default lint format clean build
+.PHONY: default lint format clean build open test
-default: format lint build scan
+default: format lint build
format:
swift format --in-place --recursive Sora
@@ -17,3 +17,6 @@ clean:
build:
xcodebuild -configuration Release -scheme Sora clean build
+open:
+ open /Users/$(USER)/Library/Developer/Xcode/DerivedData/Sora-*/Build/Products/Release/Sora.app
+