aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vmimpl')
-rw-r--r--vm/vmimpl/util.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/vmimpl/util.go b/vm/vmimpl/util.go
index 418ae2d66..47340ccde 100644
--- a/vm/vmimpl/util.go
+++ b/vm/vmimpl/util.go
@@ -9,6 +9,7 @@ import (
"github.com/google/syzkaller/pkg/log"
"github.com/google/syzkaller/pkg/osutil"
+ "github.com/google/syzkaller/sys/targets"
)
// Sleep for d.
@@ -24,7 +25,7 @@ func SleepInterruptible(d time.Duration) bool {
func WaitForSSH(debug bool, timeout time.Duration, addr, sshKey, sshUser, OS string, port int, stop chan error) error {
pwd := "pwd"
- if OS == "windows" {
+ if OS == targets.Windows {
pwd = "dir"
}
startTime := time.Now()