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 17:41:43 -04:00
committed by GitHub
parent d32e9f759c
commit e106a39620
2 changed files with 2 additions and 2 deletions
+1 -1
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"