Skip to content

Commit da0b08c

Browse files
fix path
1 parent 1ac583c commit da0b08c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uenv/modular_env.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ read_modular_env(const std::filesystem::path& modular_uenv_json_path,
4444

4545
// GPU image if present
4646
if (data.contains("gpu")) {
47-
std::filesystem::path image = data["gpu"]["file"];
48-
std::filesystem::path mount = data["gpu"]["prefix_path"];
47+
std::filesystem::path image = data["gpu"]["image"]["file"];
48+
std::filesystem::path mount = data["gpu"]["image"]["prefix_path"];
4949
sub_images.push_back(std::make_tuple(image, mount));
5050
}
5151

0 commit comments

Comments
 (0)