Skip to content

Commit b6881e2

Browse files
authored
Merge branch 'master' into LITE-26686-support-transformations
2 parents 62c8fe0 + e92b2b9 commit b6881e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

connect/cli/plugins/project/extension/helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ def _update_docker_file_runner_from(dockerfile: str, latest_version: str):
202202
for line in f.readlines():
203203
content = line.split()
204204
if (
205-
content[0] == 'FROM'
205+
content
206+
and content[0] == 'FROM'
206207
and content[1].startswith(
207208
'cloudblueconnect/connect-extension-runner:',
208209
)

0 commit comments

Comments
 (0)