Skip to content

Commit

Permalink
README fix: the -d in mktemp -d is required to created folders. (#1688
Browse files Browse the repository at this point in the history
)
  • Loading branch information
gl-yziquel authored Oct 9, 2023
1 parent 72e5b17 commit 0b9a599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.中文.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0b9a599

Please sign in to comment.