summaryrefslogtreecommitdiff
path: root/app/stat-darwin.go
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-07-14 20:21:21 -0500
committerChristian Cleberg <[email protected]>2026-07-14 20:21:21 -0500
commit6b8e23001283acb95d10c275155e9cb83b15f598 (patch)
tree21da39255b08fa7a5412fd1eebcbffa27524eae9 /app/stat-darwin.go
parent8a52a60b14aa510983c173825e16636fca73dac9 (diff)
downloadskunky-art-6b8e23001283acb95d10c275155e9cb83b15f598.tar.gz
skunky-art-6b8e23001283acb95d10c275155e9cb83b15f598.tar.bz2
skunky-art-6b8e23001283acb95d10c275155e9cb83b15f598.zip
build: fix build on darwin
macOS names the stat ctime field Ctimespec rather than Ctim, so stat.go failed to compile on a Mac. Split the darwin case into its own file and exclude darwin from the generic variant. Deploys are unaffected.
Diffstat (limited to 'app/stat-darwin.go')
-rw-r--r--app/stat-darwin.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/stat-darwin.go b/app/stat-darwin.go
new file mode 100644
index 0000000..f3e05bc
--- /dev/null
+++ b/app/stat-darwin.go
@@ -0,0 +1,15 @@
+//go:build darwin
+// +build darwin
+
+package app
+
+import (
+ "syscall"
+ "time"
+)
+
+// macOS names the ctime field Ctimespec rather than Ctim, so it needs its own
+// variant to let the project build and test on a Mac (deploys are Linux).
+func statTime(stat *syscall.Stat_t) int64 {
+ return time.Unix(stat.Ctimespec.Unix()).UnixMilli()
+}