Skip to content

Commit eb287e5

Browse files
committed
chore: remove unnecessary blank lines in Pack function for cleaner code
1 parent cee354f commit eb287e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cli/magefile.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ func Pack() error {
9696
extensionIdSafe := strings.ReplaceAll(extensionID, ".", "-")
9797
platformName := fmt.Sprintf("%s-windows-amd64.exe", extensionIdSafe)
9898
binPath := filepath.Join(binDir, platformName)
99-
99+
100100
if _, err := os.Stat(binPath); err != nil {
101101
return fmt.Errorf("binary not found at %s: %w", binPath, err)
102102
}
103-
103+
104104
fmt.Printf(" ✅ Found %s\n", platformName)
105105

106106
// Now pack

0 commit comments

Comments
 (0)