@@ -79,10 +79,11 @@ func downloadGithubUserMigrationData(client interface{}, backupDir string, id *i
79
79
}
80
80
81
81
for {
82
- switch * ms . State {
83
- case "failed" :
82
+
83
+ if * ms . State == "failed" {
84
84
log .Fatal ("Migration failed." )
85
- case "exported" :
85
+ }
86
+ if * ms .State == "exported" {
86
87
archiveURL , err := client .(* github.Client ).Migrations .UserMigrationArchiveURL (ctx , * ms .ID )
87
88
if err != nil {
88
89
panic (err )
@@ -107,9 +108,9 @@ func downloadGithubUserMigrationData(client interface{}, backupDir string, id *i
107
108
if err != nil {
108
109
log .Fatal (err )
109
110
}
110
- return
111
- default :
112
- log .Printf ("Waiting for migration state to be exported: %v\n " , * ms .State )
111
+ break
112
+ } else {
113
+ log .Printf ("Waiting for migration state to be exported: %v\n " , ms .State )
113
114
time .Sleep (60 * time .Second )
114
115
115
116
ms , _ , err = client .(* github.Client ).Migrations .UserMigrationStatus (ctx , * ms .ID )
@@ -131,10 +132,11 @@ func downloadGithubOrgMigrationData(client interface{}, org string, backupDir st
131
132
}
132
133
133
134
for {
134
- switch * ms . State {
135
- case "failed" :
135
+
136
+ if * ms . State == "failed" {
136
137
log .Fatal ("Migration failed." )
137
- case "exported" :
138
+ }
139
+ if * ms .State == "exported" {
138
140
archiveURL , err := client .(* github.Client ).Migrations .MigrationArchiveURL (ctx , org , * ms .ID )
139
141
if err != nil {
140
142
panic (err )
@@ -159,9 +161,9 @@ func downloadGithubOrgMigrationData(client interface{}, org string, backupDir st
159
161
if err != nil {
160
162
log .Fatal (err )
161
163
}
162
- return
163
- default :
164
- log .Printf ("Waiting for migration state to be exported: %v\n " , * ms .State )
164
+ break
165
+ } else {
166
+ log .Printf ("Waiting for migration state to be exported: %v\n " , ms .State )
165
167
time .Sleep (60 * time .Second )
166
168
167
169
ms , _ , err = client .(* github.Client ).Migrations .MigrationStatus (ctx , org , * ms .ID )
0 commit comments