diff options
author | Mark Hayes <mark.hayes0338@gmail.com> | 2025-04-22 08:29:50 -0400 |
---|---|---|
committer | Mark Hayes <mark.hayes0338@gmail.com> | 2025-04-22 08:39:28 -0400 |
commit | cf206d311ae1539d0d200978a32eb63895609c1d (patch) | |
tree | 3097a6a779c7a96af88cf0c4ab68f34c6b5f709e | |
parent | e8da459ecc0418e149df820f53d843f01329b238 (diff) | |
download | vyos-1x-cf206d311ae1539d0d200978a32eb63895609c1d.tar.gz vyos-1x-cf206d311ae1539d0d200978a32eb63895609c1d.zip |
T7282: op-mode: update op-mode template build script to concatenate with ; instead of &&
-rwxr-xr-x | scripts/build-command-op-templates | 2 |
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: |