diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -19,15 +19,15 @@ generate_appcast: @$(sparkle_path)/bin/generate_appcast --account $(sparkle_account) $(build_directory) archive: prepare - xcodebuild -project $(project_name).xcodeproj -scheme $(project_name) -configuration Release -archivePath $(build_directory)/$(project_name).xcarchive archive && xcodebuild -exportArchive -archivePath $(build_directory)/$(project_name).xcarchive -exportPath $(build_directory) -exportOptionsPlist export_options.plist + @xcodebuild -project $(project_name).xcodeproj -scheme $(project_name) -configuration Release -archivePath $(build_directory)/$(project_name).xcarchive archive && xcodebuild -exportArchive -archivePath $(build_directory)/$(project_name).xcarchive -exportPath $(build_directory) -exportOptionsPlist export_options.plist prepare: - mkdir -p $(build_directory) + @mkdir -p $(build_directory) format: - swift format -i -r . + @swift format -i -r . lint: - swift format lint -r . + @swift format lint -r . .PHONY: package prepare archive generate_appcast package distribute format lint build test |