Bug Description
The macOS ARM64 release (SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zip) is missing the actual snapx-ui binary. The zip contains a shell script wrapper named snapx-ui (144 bytes) that calls exec env "snapx-ui" "$@", but the real binary it references is not included in the archive.
Steps to Reproduce
- Download
SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zip from the v0.4.0 release
- Unzip it
- Run
./snapx-ui
Expected Behavior
SnapX launches.
Actual Behavior
env: snapx-ui: No such file or directory
The wrapper script (snapx-ui) is only 144 bytes and contains:
#!/usr/bin/env sh
# SnapX version: 0.4.0-alpha.0+g7eafb0f
dir="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
cd "$dir"
exec env "snapx-ui" "$@"
The actual binary is not present anywhere in the extracted folder.
Environment
- OS: macOS (Apple Silicon M3)
- Architecture: ARM64
- Release: v0.4.0-alpha.0
- File downloaded:
SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zip
Bug Description
The macOS ARM64 release (
SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zip) is missing the actualsnapx-uibinary. The zip contains a shell script wrapper namedsnapx-ui(144 bytes) that callsexec env "snapx-ui" "$@", but the real binary it references is not included in the archive.Steps to Reproduce
SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zipfrom the v0.4.0 release./snapx-uiExpected Behavior
SnapX launches.
Actual Behavior
The wrapper script (
snapx-ui) is only 144 bytes and contains:The actual binary is not present anywhere in the extracted folder.
Environment
SnapX-UI-Release-macOS-0.4.0-alpha.0+g7eafb0f-Arm64.zip