Commit 3865c33b authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/amazon/chroot: fix compilaton on Windows

parent cf99f85f
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
package chroot package chroot
import "errors" import (
"errors"
"os"
)
func lockFile(*os.File) error { func lockFile(*os.File) error {
return errors.New("not supported on Windows") return errors.New("not supported on Windows")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment