feat(init): add --yes flag to skip confirmation prompts#133
Merged
CalvinAllen merged 1 commit intomainfrom Dec 13, 2025
Merged
Conversation
Add -y/--yes flag to the init command that skips interactive confirmation prompts when configuring PATH. This allows non-interactive usage in CI environments where integration tests call 'dtvem init --yes'. - Add initYes flag variable and register with cobra - Update AddToPath signature to accept skipConfirmation parameter - Skip prompts on Unix when flag is set (shell config modification) - Skip prompts on Windows when flag is set (elevation request) Fixes #132
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
-y/--yesflag to theinitcommand to skip interactive confirmation promptsdtvem init --yesChanges
src/cmd/init.go: AddinitYesflag variable and register with cobrasrc/internal/path/path_unix.go: UpdateAddToPathto acceptskipConfirmationparameter, skip shell config modification prompt when setsrc/internal/path/path_windows.go: UpdateAddToPathandpromptForElevationto accept skip parameter, skip elevation prompt when setTest plan
npm run check(format, lint, test)dtvem init --yesworks without promptsFixes #132