diff options
| author | Danilo M. <danix@danix.xyz> | 2026-07-09 11:41:10 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-07-09 11:41:10 +0200 |
| commit | 982b768be4e68a5a82be9d5498b0b8416a244077 (patch) | |
| tree | 1652247df12a0ae4f99981bf2cc5aff241d20be0 /.extras | |
| parent | f08b881e20a6e0b88d960ff6d595df17e7d844ed (diff) | |
| download | my-slackbuilds-982b768be4e68a5a82be9d5498b0b8416a244077.tar.gz my-slackbuilds-982b768be4e68a5a82be9d5498b0b8416a244077.zip | |
docs: fix SlackBuild mode step in claude-desktop-bin plan (0644 not +x)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to '.extras')
| -rw-r--r-- | .extras/docs/superpowers/plans/2026-07-09-claude-desktop-bin-slackbuild.md | 7 |
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`. |
