Skip to content

Commit fe14b25

Browse files
joohwcursoragent
andcommitted
fix(desktop): drop syscall.X_OK for Go 1.25 compatibility
Use mode-bit executable checks on all Unix targets so GoReleaser darwin/linux builds succeed. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 6fbdefd commit fe14b25

3 files changed

Lines changed: 2 additions & 11 deletions

File tree

core/internal/buildinfo/buildinfo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "strings"
44

55
// Set at link time via -ldflags (see .goreleaser.yaml).
66
var (
7-
Version = "dev0.1.59"
7+
Version = "dev0.1.60"
88
Commit = "none"
99
Date = "unknown"
1010
)

core/internal/desktop/agents_executable_darwin.go

Lines changed: 0 additions & 9 deletions
This file was deleted.

core/internal/desktop/agents_executable_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build !windows && !darwin
1+
//go:build !windows
22

33
package desktop
44

0 commit comments

Comments
 (0)