feat: run will also copy/seed#26
Closed
AndrewADev wants to merge 2 commits into
Closed
Conversation
AndrewADev
marked this pull request as ready for review
June 9, 2026 20:07
The current recommended way to test without relying on hooks directly is to switch branches with hooks suppressed, and then use `bight run`. Prior to these changes, this did not apply to the recenly added `copy` directive. These changes extend `bight run` to prompt the user if they would like to run copy, so long as the destination file doesn't already exist. Also extracts a "prompt" helper that allows taking the default in non-interactive mode. The interactive setup command has been updated to use this same helper. Previously, it was duplicating these checks inline.
Using the shared "confirm" helper has the consequence of opting into defaults in the ineraction install, which defeats the purpose of walking the user through the options. Prior to that, the install would've been waiting for input.
AndrewADev
force-pushed
the
claude/gracious-cerf-c30680
branch
from
June 9, 2026 20:32
f395da3 to
3456606
Compare
AndrewADev
marked this pull request as draft
June 9, 2026 20:32
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.
The current recommended way to test without relying on hooks directly is to switch branches with hooks suppressed, and then use
bight run.Prior to these changes, this did not apply to the recenly added
copydirective.These changes extend
bight runto prompt the user if they would like to run copy, so long as the destination file doesn't already exist.Also extracts a "prompt" helper that allows taking the default in non-interactive mode. The interactive setup command has been updated to use this same helper. Previously, it was duplicating these checks inline. Since this then leads to a config being created with only the defaults, the interactive setup is now skipped entirely when
installrun non-interactively.