- commit
- 92d2f94fd041bd8bbf2e91608df908fb0c464201
- parent
- 8535398ca0d22cbd24981039c6b3ff09c2e30a80
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2024-10-20 21:56
fix: d-run: entrypoint after --
Diffstat
| M | d-run | 3 | ++- |
1 files changed, 2 insertions, 1 deletions
diff --git a/d-run b/d-run
@@ -89,10 +89,11 @@ def build_cmd(dir, config): 89 89 if gid is not None: 90 90 cmd += ['--gid', gid] 91 91 -1 92 cmd.append('--') -1 93 92 94 if config.get('Entrypoint'): 93 95 cmd += config['Entrypoint'] 94 9695 -1 cmd.append('--')96 97 cmd += config['Cmd'] 97 98 98 99 return cmd