From 4b61676f998fcdcbb463590bf350ab4d326b3cfe Mon Sep 17 00:00:00 2001 From: Trey Moen Date: Thu, 15 May 2025 17:38:24 -0700 Subject: [PATCH] pack.py --- release/pack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/pack.py b/release/pack.py index a128e46d78..7a679e5bf8 100755 --- a/release/pack.py +++ b/release/pack.py @@ -21,7 +21,7 @@ def copy(src, dest, follow_symlinks=False): if __name__ == '__main__': - parser = ArgumentParser(prog='pack-raylib.py', description="package openpilot's raylib code into a portable executable", epilog='comma.ai') + parser = ArgumentParser(prog='pack.py', description="package openpilot's raylib code into a portable executable", epilog='comma.ai') parser.add_argument('-e', '--entrypoint', help="function to call in module, default is 'main'", default='main') parser.add_argument('-o', '--output', help='output file') parser.add_argument('module', help="the module to target, e.g. 'openpilot.system.ui.spinner'")