aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/.extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md b/.extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md
index 71a1122..97bb713 100644
--- a/.extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md
+++ b/.extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md
@@ -205,11 +205,14 @@ cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
```
-- [ ] **Step 2: Make it executable and syntax-check**
+- [ ] **Step 2: Set mode 0644 and syntax-check**
+
+SBo requires the `.SlackBuild` to be mode 0644 (sbolint errors on 0755); it is
+invoked as `bash x.SlackBuild`, not executed directly.
Run:
```bash
-chmod +x claude-desktop-bin/claude-desktop-bin.SlackBuild
+chmod 0644 claude-desktop-bin/claude-desktop-bin.SlackBuild
bash -n claude-desktop-bin/claude-desktop-bin.SlackBuild && echo "syntax OK"
```
Expected: `syntax OK`.