File tree Expand file tree Collapse file tree 6 files changed +72
-16
lines changed
ProjectGenerator.xcodeproj Expand file tree Collapse file tree 6 files changed +72
-16
lines changed Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >FMWK </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >2.1.2 </string >
18+ <string >2.1.3 </string >
1919 <key >CFBundleVersion </key >
20- <string >15 </string >
20+ <string >16 </string >
2121 <key >NSHumanReadableCopyright </key >
2222 <string >Copyright © 2017 Maxim Khatskevich. All rights reserved. </string >
2323 <key >NSPrincipalClass </key >
Original file line number Diff line number Diff line change 451451 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
452452 CODE_SIGN_IDENTITY = "-";
453453 COPY_PHASE_STRIP = NO;
454- CURRENT_PROJECT_VERSION = 15 ;
454+ CURRENT_PROJECT_VERSION = 16 ;
455455 DEBUG_INFORMATION_FORMAT = dwarf;
456456 ENABLE_STRICT_OBJC_MSGSEND = YES;
457457 ENABLE_TESTABILITY = YES;
503503 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
504504 CODE_SIGN_IDENTITY = "-";
505505 COPY_PHASE_STRIP = NO;
506- CURRENT_PROJECT_VERSION = 15 ;
506+ CURRENT_PROJECT_VERSION = 16 ;
507507 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
508508 ENABLE_NS_ASSERTIONS = NO;
509509 ENABLE_STRICT_OBJC_MSGSEND = YES;
Original file line number Diff line number Diff line change @@ -587,9 +587,23 @@ enum Spec_1_2_1
587587
588588 //===
589589
590- result <<< processScripts ( & idention, regulars: scripts. regulars)
591- result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
592- result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
590+ if
591+ !scripts. regulars. isEmpty
592+ {
593+ result <<< processScripts ( & idention, regulars: scripts. regulars)
594+ }
595+
596+ if
597+ !scripts. beforeBuilds. isEmpty
598+ {
599+ result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
600+ }
601+
602+ if
603+ !scripts. afterBuilds. isEmpty
604+ {
605+ result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
606+ }
593607
594608 //===
595609
Original file line number Diff line number Diff line change @@ -606,9 +606,23 @@ enum Spec_1_3_0
606606
607607 //===
608608
609- result <<< processScripts ( & idention, regulars: scripts. regulars)
610- result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
611- result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
609+ if
610+ !scripts. regulars. isEmpty
611+ {
612+ result <<< processScripts ( & idention, regulars: scripts. regulars)
613+ }
614+
615+ if
616+ !scripts. beforeBuilds. isEmpty
617+ {
618+ result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
619+ }
620+
621+ if
622+ !scripts. afterBuilds. isEmpty
623+ {
624+ result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
625+ }
612626
613627 //===
614628
Original file line number Diff line number Diff line change @@ -600,9 +600,23 @@ enum Spec_2_0_0
600600
601601 //===
602602
603- result <<< processScripts ( & idention, regulars: scripts. regulars)
604- result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
605- result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
603+ if
604+ !scripts. regulars. isEmpty
605+ {
606+ result <<< processScripts ( & idention, regulars: scripts. regulars)
607+ }
608+
609+ if
610+ !scripts. beforeBuilds. isEmpty
611+ {
612+ result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
613+ }
614+
615+ if
616+ !scripts. afterBuilds. isEmpty
617+ {
618+ result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
619+ }
606620
607621 //===
608622
Original file line number Diff line number Diff line change @@ -600,9 +600,23 @@ enum Spec_2_1_0
600600
601601 //===
602602
603- result <<< processScripts ( & idention, regulars: scripts. regulars)
604- result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
605- result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
603+ if
604+ !scripts. regulars. isEmpty
605+ {
606+ result <<< processScripts ( & idention, regulars: scripts. regulars)
607+ }
608+
609+ if
610+ !scripts. beforeBuilds. isEmpty
611+ {
612+ result <<< processScripts ( & idention, beforeBuild: scripts. beforeBuilds)
613+ }
614+
615+ if
616+ !scripts. afterBuilds. isEmpty
617+ {
618+ result <<< processScripts ( & idention, afterBuild: scripts. afterBuilds)
619+ }
606620
607621 //===
608622
You can’t perform that action at this time.
0 commit comments