File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -639,9 +639,6 @@ def main():
639
639
if not args .verify_generated_files :
640
640
generate_gyb_files (args .gyb_exec , verbose = args .verbose ,
641
641
add_source_locations = args .add_source_locations )
642
- # Skip the rest of the build if we should perform degyb only
643
- if args .degyb_only :
644
- sys .exit (0 )
645
642
except subprocess .CalledProcessError as e :
646
643
printerr ('FAIL: Generating .gyb files failed' )
647
644
printerr ('Executing: %s' % ' ' .join (e .cmd ))
@@ -658,6 +655,10 @@ def main():
658
655
'gyb-files and recommit them.' )
659
656
sys .exit (1 )
660
657
658
+ # Skip the rest of the build if we should perform degyb only
659
+ if args .degyb_only :
660
+ sys .exit (0 )
661
+
661
662
if args .generate_xcodeproj :
662
663
xcode_gen (config = args .xcconfig_path )
663
664
sys .exit (0 )
You can’t perform that action at this time.
0 commit comments