Relax Qemu version regexp to accomodate build identifier in the version command

This commit is contained in:
Chris Bednarski
2015-09-09 18:39:40 -07:00
parent 0e00b5fbf7
commit 4b74613d9d

View File

@@ -21,7 +21,7 @@ import (
)
var (
reQemuVersion = regexp.MustCompile("QEMU emulator version ([\\d\\.]+),.+")
reQemuVersion = regexp.MustCompile("QEMU emulator version ([\\d\\.]+).+")
)
// QemuDriver is a driver for running images via Qemu