Conversation
Several docs still tell users to enter the container with 'll-builder run --exec bash' or 'll-builder build --exec bash', but neither subcommand has an --exec option. The correct syntax is a positional COMMAND after '--' (as used in the debug guide and man pages). This is the same fix as OpenAtom-Linyaps#2010 for FAQ, applied to the remaining pages: ll-appimage-convert, ll-pica, ll-pica-flatpak, and the build-in-env lesson. Verification: - apps/ll-builder/src/main.cpp: run/build take positional COMMAND..., no --exec - docs/pages/guide/reference/commands/ll-builder/run.md and build.md use 'll-builder run -- bash' / 'll-builder build -- bash' - docs/pages/guide/debug/debug.md uses 'll-builder run -- bash' Influence: docs only; no runtime behavior change. AI disclosure: prepared with AI assistance; contributor reviewed the final diff. Signed-off-by: halaxy <63827956+89799969@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix remaining
ll-builder run --exec bash/ll-builder build --exec bashexamples.Neither
ll-builder runnorll-builder buildhas an--execoption. Both take a positionalCOMMAND...after--(seeapps/ll-builder/src/main.cppand the official man pages). This applies the same correction as #2010 (FAQ) to the remaining pages.Verification
apps/ll-builder/src/main.cpp:run/builddefine positionalCOMMAND, not--execdebug.mdalready usell-builder run -- bash/ll-builder build -- bashInfluence
AI disclosure
Prepared with AI assistance; contributor reviewed the final diff.