Skip to content

Commit 4a2e058

Browse files
committed
Fix test script
1 parent aa754fe commit 4a2e058

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This container uses [google/zx](https://github.com/google/zx) as an `entrypoint`
2020

2121
const name = 'Foo';
2222

23-
await $`echo Hello, ${name}.`;
23+
echo`Hello, ${name}.`;
2424
```
2525

2626
- Mount `example.mjs` path and run:

example.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env zx
22

3-
const name = 'Foo';
3+
const name = "Foo";
44

5-
await $`echo Hello, ${name}.`;
5+
echo`Hello, ${name}.`;

0 commit comments

Comments
 (0)