1
0
mirror of https://github.com/aclindsa/ofxgo.git synced 2025-07-03 12:28:38 -04:00

cmd/ofx: Use 'response.ofx' as the default download file everywhere

Conflicting defaults led to confusing default behavior between
sub-commands.
This commit is contained in:
2020-12-07 13:36:38 -05:00
parent 8c1e6eafab
commit 4c7c48cab7
4 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ var profileDownloadCommand = command{
func init() {
defineServerFlags(profileDownloadCommand.Flags)
profileDownloadCommand.Flags.StringVar(&filename, "filename", "./profile.ofx", "The file to save to")
profileDownloadCommand.Flags.StringVar(&filename, "filename", "./response.ofx", "The file to save to")
}
func downloadProfileCheckFlags() bool {