From cab1ed7dc9060133192052a60e2f8d1f146bff98 Mon Sep 17 00:00:00 2001 From: Shane Canon Date: Fri, 17 Mar 2023 12:29:25 -0700 Subject: [PATCH] Don't use additional store for build command --- podman_hpc/siteconfig.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/podman_hpc/siteconfig.py b/podman_hpc/siteconfig.py index 75063fe..5158c6d 100644 --- a/podman_hpc/siteconfig.py +++ b/podman_hpc/siteconfig.py @@ -326,6 +326,8 @@ def get_cmd_extensions(self, subcommand, args): cmds.extend(self.default_args) if subcommand == "run": cmds.extend(self.default_run_args) + elif subcommand == "build": + cmds = self.default_pull_args for mod, mconf in self.sitemods.get(subcommand, {}).items(): if 'cli_arg' not in mconf: continue