We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8655641 + da654e8 commit 0cd1feaCopy full SHA for 0cd1fea
build-script.py
@@ -639,9 +639,6 @@ def main():
639
if not args.verify_generated_files:
640
generate_gyb_files(args.gyb_exec, verbose=args.verbose,
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
except subprocess.CalledProcessError as e:
646
printerr('FAIL: Generating .gyb files failed')
647
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
+ # Skip the rest of the build if we should perform degyb only
+ if args.degyb_only:
+ sys.exit(0)
661
+
662
if args.generate_xcodeproj:
663
xcode_gen(config=args.xcconfig_path)
664
sys.exit(0)
0 commit comments