AlpineLinux: Fix install.sh and docs typo (#14105)
- AlpineLinux uses busybox `mktemp` which requires `mktemp -d` end with six XXXXXX (not five). - Fixes #14082
This commit is contained in:
parent
d32e9f759c
commit
e106a39620
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ main() {
|
|||
platform="$(uname -s)"
|
||||
arch="$(uname -m)"
|
||||
channel="${ZED_CHANNEL:-stable}"
|
||||
temp="$(mktemp -d "/tmp/zed-XXXXX")"
|
||||
temp="$(mktemp -d "/tmp/zed-XXXXXX")"
|
||||
|
||||
if [ "$platform" = "Darwin" ]; then
|
||||
platform="macos"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue