summaryrefslogtreecommitdiff
path: root/internal/commands/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/commands/errors.go')
-rw-r--r--internal/commands/errors.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/commands/errors.go b/internal/commands/errors.go
index 481053c33..5a6353fa7 100644
--- a/internal/commands/errors.go
+++ b/internal/commands/errors.go
@@ -6,3 +6,6 @@ import (
// ErrStdinIsNotTerminal is returned when Stdin is not an interactive terminal.
var ErrStdinIsNotTerminal = errors.New("stdin is not a terminal")
+
+// ErrConfirmationMismatch is returned when user input does not match the confirmation prompt.
+var ErrConfirmationMismatch = errors.New("user input didn't match the confirmation prompt")