mirror of
https://github.com/drone-plugins/github-actions
synced 2024-11-15 02:56:25 +01:00
12 lines
212 B
Go
12 lines
212 B
Go
|
// +build windows
|
||
|
|
||
|
package daemon
|
||
|
|
||
|
const dockerExe = "C:\\bin\\docker.exe"
|
||
|
const dockerdExe = ""
|
||
|
const dockerHome = "C:\\ProgramData\\docker\\"
|
||
|
|
||
|
func startDaemon(daemon Daemon) {
|
||
|
// this is a no-op on windows
|
||
|
}
|