INNER CODE UNIT · Python
main
stratumauth/app · extra/build.py:213
def main():
args = get_args()
validate_path()
if args.fdroid:
print(f"Building {args.project} as {args.package} (F-Droid)")
else:
print(f"Building {args.project} as {args.package}")
print(
f"With runtimes {args.runtime if args.runtime is not None else ', '.join(RUNTIME_IDENTIFIERS.keys())}"
)
with get_build_dir_path(args.output) as build_dir:
git_command = ["git", "clone"]
if args.branch is not None:
git_command += ["-b", args.branch]