We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee354f commit eb287e5Copy full SHA for eb287e5
1 file changed
cli/magefile.go
@@ -96,11 +96,11 @@ func Pack() error {
96
extensionIdSafe := strings.ReplaceAll(extensionID, ".", "-")
97
platformName := fmt.Sprintf("%s-windows-amd64.exe", extensionIdSafe)
98
binPath := filepath.Join(binDir, platformName)
99
-
+
100
if _, err := os.Stat(binPath); err != nil {
101
return fmt.Errorf("binary not found at %s: %w", binPath, err)
102
}
103
104
fmt.Printf(" ✅ Found %s\n", platformName)
105
106
// Now pack
0 commit comments