builder/amazon/chroot: fix compilaton on Windows

This commit is contained in:
Mitchell Hashimoto 2013-07-30 21:50:59 -07:00
parent cf99f85f6d
commit 3865c33be1
1 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,10 @@
package chroot
import "errors"
import (
"errors"
"os"
)
func lockFile(*os.File) error {
return errors.New("not supported on Windows")