Skip to content

Commit

Permalink
Updated envd version
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Dec 21, 2023
1 parent d864ed5 commit 8a1b82a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def build():
envd_version = json.loads(EnvdImageSpecBuilder().execute_command(version_command)[0])["envd"].replace("v", "")

Check warning on line 100 in plugins/flytekit-envd/flytekitplugins/envd/image_builder.py

View check run for this annotation

Codecov / codecov/patch

plugins/flytekit-envd/flytekitplugins/envd/image_builder.py#L99-L100

Added lines #L99 - L100 were not covered by tests

# Indentation is required by envd
if Version(envd_version) <= Version("0.3.36"):
if Version(envd_version) <= Version("0.3.37"):
envd_config += ' io.copy(host_path="./", envd_path="/root")'

Check warning on line 104 in plugins/flytekit-envd/flytekitplugins/envd/image_builder.py

View check run for this annotation

Codecov / codecov/patch

plugins/flytekit-envd/flytekitplugins/envd/image_builder.py#L103-L104

Added lines #L103 - L104 were not covered by tests
else:
envd_config += ' io.copy(source="./", target="/root")'

Check warning on line 106 in plugins/flytekit-envd/flytekitplugins/envd/image_builder.py

View check run for this annotation

Codecov / codecov/patch

plugins/flytekit-envd/flytekitplugins/envd/image_builder.py#L106

Added line #L106 was not covered by tests
Expand Down

0 comments on commit 8a1b82a

Please sign in to comment.