summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMark Hayes <mark.hayes0338@gmail.com>2025-04-22 08:29:50 -0400
committerMark Hayes <mark.hayes0338@gmail.com>2025-04-22 08:39:28 -0400
commitcf206d311ae1539d0d200978a32eb63895609c1d (patch)
tree3097a6a779c7a96af88cf0c4ab68f34c6b5f709e /scripts
parente8da459ecc0418e149df820f53d843f01329b238 (diff)
downloadvyos-1x-cf206d311ae1539d0d200978a32eb63895609c1d.tar.gz
vyos-1x-cf206d311ae1539d0d200978a32eb63895609c1d.zip
T7282: op-mode: update op-mode template build script to concatenate with ; instead of &&
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-command-op-templates2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-command-op-templates b/scripts/build-command-op-templates
index d203fdcef..0bb62113e 100755
--- a/scripts/build-command-op-templates
+++ b/scripts/build-command-op-templates
@@ -116,7 +116,7 @@ def get_properties(p):
if comptype is not None:
props["comp_type"] = "imagefiles"
comp_exprs.append("echo -n \"<imagefiles>\"")
- comp_help = " && ".join(comp_exprs)
+ comp_help = " ; ".join(comp_exprs)
props["comp_help"] = comp_help
except: