builder/amazon/chroot: fix compilaton on Windows
This commit is contained in:
parent
cf99f85f6d
commit
3865c33be1
|
@ -2,7 +2,10 @@
|
|||
|
||||
package chroot
|
||||
|
||||
import "errors"
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
)
|
||||
|
||||
func lockFile(*os.File) error {
|
||||
return errors.New("not supported on Windows")
|
||||
|
|
Loading…
Reference in New Issue