Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump go and dependencies to 1.23.2 #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

sergeyberezansky
Copy link

go: upgraded go v1.22.5 => v1.23.2
go: upgraded golang.org/x/sync v0.8.0 => v0.12.0
go: upgraded golang.org/x/sys v0.26.0 => v0.31.0

@@ -254,13 +254,13 @@ func GetFileTimes(path string) (atime, mtime, ctime time.Time, err error) {
stat := fileInfo.Sys().(*syscall.Stat_t)

// Extract access time (atime)
atime = time.Unix(stat.Atim.Sec, stat.Atim.Nsec)
atime = time.Unix(stat.Atimespec.Sec, stat.Atimespec.Nsec)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One thing about these changes... and this code in general, is that it means locar can only work on UNIX-like systems. I guess that's ok for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants