Browse Source

Have `make project` tell the user how to install the `xcodeproj` gem.

Daniel Alm 7 years ago
parent
commit
5415f16508
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -9,7 +9,7 @@ all:
 project:
 	swift package generate-xcodeproj
 # Optional: set the generated project's indentation settings.
-	-ruby fix-indentation-settings.rb
+	-ruby fix-indentation-settings.rb || echo "Consider running 'sudo gem install xcodeproj' to automatically set correct indentation settings for the generated project."
 
 test:	all
 	swift test -v $(CFLAGS)