Run gofmt on code, to avoid modified workspace

pull/9346/head
Anders F Björklund 2020-09-28 21:42:46 +02:00
parent d6d10797f8
commit cf7df774a1
1 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ func init() {
Reg = Register{
// Expected step orders, organized by the initial step seen
steps: map[RegStep][]RegStep{
InitialSetup: []RegStep{
InitialSetup: {
InitialSetup,
SelectingDriver,
DownloadingArtifacts,
@ -78,10 +78,10 @@ func init() {
Done,
},
Stopping: []RegStep{Stopping, Done},
Pausing: []RegStep{Pausing, Done},
Unpausing: []RegStep{Unpausing, Done},
Deleting: []RegStep{Deleting, Stopping, Deleting, Done},
Stopping: {Stopping, Done},
Pausing: {Pausing, Done},
Unpausing: {Unpausing, Done},
Deleting: {Deleting, Stopping, Deleting, Done},
},
}
}