You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// indicating that the user should explicitly request overwriting of the file
133
134
_, err=os.Stat(opts.filename)
134
135
iferr==nil&&!opts.overwrite {
135
-
returnfmt.Errorf("file '%v' already exists. Use --overwrite to overwrite the file, or --file-location flag to choose a custom location", opts.filename)
136
+
returnfmt.Errorf("file %v already exists. Use --overwrite to overwrite the file, or --file-location flag to choose a custom location", color.Info(opts.filename))
returnfmt.Errorf("file '%v' already exists. Use --overwrite to overwrite the file, or --file-location to choose a custom location", opts.filename)
120
+
returnfmt.Errorf("file %v already exists. Use --overwrite to overwrite the file, or --file-location to choose a custom location", color.Info(opts.filename))
120
121
}
121
122
}
122
123
123
124
// prompt the user to confirm their wish to proceed with this action
124
125
varconfirmResetbool
125
126
promptConfirmDelete:=&survey.Confirm{
126
-
Message: fmt.Sprintf("Are you sure you want to reset the credentials for the service account with ID '%v'?", opts.id),
127
+
Message: fmt.Sprintf("Are you sure you want to reset the credentials for the service account with ID %v?", color.Info(opts.id)),
0 commit comments