You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This prompt only be required very rarely, ex. once per:
166
+
# Deployment of the repo-converter container, ex. the ~/.subversion/auth/svn.ssl.server directory inside the container is empty, as the root volume is not retained
167
+
# New Subversion server
168
+
# New TLS cert on a server
169
+
# However, it needs to be checked for on every job
170
+
expect= []
171
+
expect.append(
172
+
("(R)eject, accept (t)emporarily or accept (p)ermanently?", "p"),
173
+
)
174
+
ctx.job["config"].update(
175
+
{
176
+
"expect": expect
177
+
}
178
+
)
179
+
180
+
# Trusting the TLS cert requires interactive mode
181
+
else:
182
+
183
+
# If not needing to trust the TLS cert, then use non-interactive mode
# This prompt only be required very rarely, ex. once per:
190
-
# Deployment of the repo-converter container, ex. the ~/.subversion/auth/svn.ssl.server directory inside the container is empty, as the root volume is not retained
191
-
# New Subversion server
192
-
# New TLS cert on a server
193
-
# However, it needs to be checked for on every job
194
-
expect= []
195
-
expect.append(
196
-
("(R)eject, accept (t)emporarily or accept (p)ermanently?", "p"),
197
-
)
198
-
ctx.job["config"].update(
199
-
{
200
-
"expect": expect
201
-
}
202
-
)
203
-
204
-
# git svn commands
215
+
## git svn commands
205
216
iflayout:
206
217
cmd_git_svn_init+= ["--stdlayout"]
207
218
# Warn the user if they provided an invalid value for the layout
0 commit comments