Skip to content

Commit 2c8ca45

Browse files
remi-espie223083658
authored andcommitted
chore: sorts imports with goimport
1 parent b3546da commit 2c8ca45

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

builder/virtualbox/common/step_attach_isos.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ package common
66
import (
77
"context"
88
"fmt"
9-
"github.com/hashicorp/packer-plugin-sdk/tmp"
109
"io"
1110
"log"
1211
"os"
1312
"path/filepath"
1413

14+
"github.com/hashicorp/packer-plugin-sdk/tmp"
15+
1516
"github.com/hashicorp/packer-plugin-sdk/multistep"
1617
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
1718

builder/virtualbox/iso/step_create_disk.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ package iso
66
import (
77
"context"
88
"fmt"
9-
"github.com/hashicorp/packer-plugin-sdk/multistep"
10-
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
11-
vboxcommon "github.com/hashicorp/packer-plugin-virtualbox/builder/virtualbox/common"
129
"path/filepath"
1310
"strconv"
1411
"strings"
12+
13+
"github.com/hashicorp/packer-plugin-sdk/multistep"
14+
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
15+
vboxcommon "github.com/hashicorp/packer-plugin-virtualbox/builder/virtualbox/common"
1516
)
1617

1718
// This step creates the virtual disk that will be used as the

0 commit comments

Comments
 (0)