diff options
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 + |