Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ API keys. It uses PKCE (Proof Key for Code Exchange) and Dynamic Client
Registration for maximum security.

AUTHENTICATION METHODS:
Fetch supports two authentication methods:
Pup supports two authentication methods:

1. OAuth2 (RECOMMENDED):
- Browser-based login flow
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ var (

// BuildInfo returns formatted build information
func BuildInfo() string {
return "Fetch " + Version + " (" + GitCommit + ") built on " + BuildDate
return "Pup " + Version + " (" + GitCommit + ") built on " + BuildDate
}
2 changes: 1 addition & 1 deletion pkg/auth/storage/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func detectBackend() (BackendType, error) {
if !fallbackWarningShown {
fmt.Fprintln(os.Stderr,
"⚠️ Warning: OS keychain not available, falling back to file-based token storage.\n"+
" Tokens will be stored in ~/.config/fetch/ with file permissions 0600.\n"+
" Tokens will be stored in ~/.config/pup/ with file permissions 0600.\n"+
" Set DD_TOKEN_STORAGE=file to suppress this warning.")
fallbackWarningShown = true
}
Expand Down