We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e04a8c3 + 92804b3 commit 1375015Copy full SHA for 1375015
binderhub/build.py
@@ -176,11 +176,13 @@ def __init__(
176
def get_r2d_cmd_options(self):
177
"""Get options/flags for repo2docker"""
178
r2d_options = [
179
- '--ref', self.ref,
180
- '--image', self.image_name,
181
- '--no-clean', '--no-run', '--json-logs',
182
- '--user-name', 'jovyan',
183
- '--user-id', '1000',
+ f"--ref={self.ref}",
+ f"--image={self.image_name}",
+ "--no-clean",
+ "--no-run",
+ "--json-logs",
184
+ "--user-name=jovyan",
185
+ "--user-id=1000",
186
]
187
if self.appendix:
188
r2d_options.extend(['--appendix', self.appendix])
0 commit comments