You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: skip file permission assertions on Windows in setup tests
Windows does not enforce Unix-style file permission bits, so
os.WriteFile(..., 0600) results in 0666 on Windows. Guard the
three os.FileMode(0600) assertions with runtime.GOOS != "windows"
to fix CI failures on the Windows runner.
0 commit comments