Skip to content

Commit fcee916

Browse files
author
Deepankar Sharma
committed
Add conditional compilation for syscall because build breaks on windows
1 parent a43132b commit fcee916

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

utils/platform_windows.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package lxdapi
22

3+
import (
4+
"io/fs"
5+
)
6+
37
func GetUidGid(stat fs.FileInfo) (int64, int64, error) {
48
return 0, 0, nil
59
}

0 commit comments

Comments
 (0)