Skip to content

Commit 804566f

Browse files
authored
[nfc] Reflect updated filename in the script (#374)
1 parent 86db7b2 commit 804566f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build_tools/linux_portable_build.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
66
# Build for a specific family. Note that all options after the "--" are
77
# passed verbatim to CMake.
8-
python build_portable.py -- -DTHEROCK_AMDGPU_FAMILIES=gfx110X-dgpu
8+
python linux_build_portable.py -- -DTHEROCK_AMDGPU_FAMILIES=gfx110X-dgpu
99
1010
# Build with podman vs docker.
11-
python build_portable.py --docker=podman
11+
python linux_build_portable.py --docker=podman
1212
1313
# Enter an interactive shell set up like the build.
14-
python build_portable.py --interactive
14+
python linux_build_portable.py --interactive
1515
1616
Other options of note:
1717
@@ -95,7 +95,7 @@ def main(argv: list[str]):
9595
rest_args = argv[rest_pos + 1 :]
9696
argv = argv[:rest_pos]
9797

98-
p = argparse.ArgumentParser(prog="build_portable.py")
98+
p = argparse.ArgumentParser(prog="linux_build_portable.py")
9999
p.add_argument("--docker", default="docker", help="Docker or podman binary")
100100
p.add_argument(
101101
"--image",

0 commit comments

Comments
 (0)