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:
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user