Skip to content

Commit

Permalink
docs: improved example of local gvmi
Browse files Browse the repository at this point in the history
  • Loading branch information
mgordel committed Jul 18, 2024
1 parent fb9798d commit c81738c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/local-image/serveLocalGvmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const DIR_NAME = fileURLToPath(new URL(".", import.meta.url));
},
});
try {
await executor.run(async (exe) => console.log((await exe.run("echo 'Hello World'")).stdout));
await executor.run(async (exe) => console.log((await exe.run("cat hello.txt")).stdout));
} catch (error) {
console.error("Computation failed:", error);
} finally {
Expand Down

0 comments on commit c81738c

Please sign in to comment.