README fix: the -d in mktemp -d
is required to created folders. (#1688)
This commit is contained in:
parent
72e5b17242
commit
0b9a599cea
@ -910,7 +910,7 @@ Starting server with database localhost:6379 on port 1337…
|
||||
Variables, strings, concatenation, path joining, and substitution using `{{…}}` are supported:
|
||||
|
||||
```just
|
||||
tmpdir := `mktemp`
|
||||
tmpdir := `mktemp -d`
|
||||
version := "0.2.7"
|
||||
tardir := tmpdir / "awesomesauce-" + version
|
||||
tarball := tardir + ".tar.gz"
|
||||
|
@ -890,7 +890,7 @@ Starting server with database localhost:6379 on port 1337…
|
||||
支持在变量、字符串、拼接、路径连接和替换中使用 `{{…}}` :
|
||||
|
||||
```just
|
||||
tmpdir := `mktemp`
|
||||
tmpdir := `mktemp -d`
|
||||
version := "0.2.7"
|
||||
tardir := tmpdir / "awesomesauce-" + version
|
||||
tarball := tardir + ".tar.gz"
|
||||
|
Loading…
Reference in New Issue
Block a user