Continue restructuring

This commit is contained in:
Greg Hellings
2023-08-10 14:10:58 -05:00
parent 22c04bd092
commit cc95162e18
27 changed files with 951 additions and 149 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env xonsh
import argparse
source ./test.xsh
parser = argparse.ArgumentParser("Build all")
parser.add_argument("--provider", choices=get_providers(), default="qemu.x86_64")
args = parser.parse_args()
for f in g`distros/**/build.xsh`:
./@(f) --provider @(args.provider)