We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db61a5 commit 6101f6fCopy full SHA for 6101f6f
.gitpod.yml
@@ -10,5 +10,5 @@ ports:
10
onOpen: ignore
11
12
tasks:
13
-- init: ./aero.py --test --no-run
+- init: ./aero.py --no-run
14
command: ./aero.py --only-run
aero.py
@@ -645,6 +645,20 @@ def main():
645
646
if args.only_run:
647
iso_path = os.path.join(BUILD_DIR, 'aero.iso')
648
+
649
+ if not os.path.exists(iso_path):
650
+ user_bins = build_userland(args)
651
652
+ if not user_bins:
653
+ return
654
655
+ kernel_bin = build_kernel(args)
656
657
+ if not kernel_bin or args.check:
658
659
660
+ kernel_bin = kernel_bin[0]
661
+ iso_path = prepare_iso(args, kernel_bin, user_bins)
662
run_in_emulator(args, iso_path)
663
elif args.clean:
664
src_target = os.path.join('src', 'target', args.target)
0 commit comments