Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flags for bios and uefi including firmware #15

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
linters:
enable:
- gofmt
- goimports
- govet
- gocyclo
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/docker/machine/libmachine/drivers/plugin"
"github.com/machine-drivers/docker-machine-driver-qemu"
qemu "github.com/machine-drivers/docker-machine-driver-qemu"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ module github.com/machine-drivers/docker-machine-driver-qemu

go 1.13

require github.com/docker/machine v0.16.2

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/docker/docker v0.0.0-20180621001606-093424bec097 // indirect
github.com/docker/machine v0.16.2
github.com/sirupsen/logrus v1.0.4 // indirect
golang.org/x/crypto v0.0.0-20170704135851-51714a8c4ac1 // indirect
golang.org/x/sys v0.0.0-20180202135801-37707fdb30a5 // indirect
Expand Down