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:
Peter Tripp 2024-07-10 21:41:43 +00:00 committed by GitHub
parent d32e9f759c
commit e106a39620
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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"