We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483cc88 commit c873606Copy full SHA for c873606
README.md
@@ -1,13 +1,11 @@
1
-<a href="https://webpod.dev/?from=zx"><img src="https://webpod.dev/img/banner.png" alt="Webpod - deploy JavaScript apps" width="190" align="right"></a>
2
-
3
# 🐚 zx
4
5
```js
6
#!/usr/bin/env zx
7
8
await $`cat package.json | grep name`
9
10
-let branch = await $`git branch --show-current`
+const branch = await $`git branch --show-current`
11
await $`dep deploy --branch=${branch}`
12
13
await Promise.all([
@@ -16,7 +14,7 @@ await Promise.all([
16
14
$`sleep 3; echo 3`,
17
15
])
18
19
-let name = 'foo bar'
+const name = 'foo bar'
20
await $`mkdir /tmp/${name}`
21
```
22
0 commit comments