We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37af8f8 commit e5291baCopy full SHA for e5291ba
cmd/download.go
@@ -30,6 +30,7 @@ func downloadCmd() *cobra.Command {
30
31
var lastErr error
32
var acc appstore.Account
33
+ var purchased bool = false
34
35
return retry.Do(func() error {
36
infoResult, err := dependencies.AppStore.AccountInfo()
@@ -63,6 +64,10 @@ func downloadCmd() *cobra.Command {
63
64
if err != nil {
65
return err
66
}
67
+ purchased = true
68
+ dependencies.Logger.Verbose().
69
+ Bool("success", true).
70
+ Msg("purchase")
71
72
73
interactive, _ := cmd.Context().Value("interactive").(bool)
@@ -96,6 +101,7 @@ func downloadCmd() *cobra.Command {
96
101
97
102
dependencies.Logger.Log().
98
103
Str("output", out.DestinationPath).
104
+ Bool("purchased", purchased).
99
105
Bool("success", true).
100
106
Send()
107
0 commit comments