Files
plugin-drone-scp/command_windows.go
T
2023-02-03 17:12:57 +08:00

13 lines
214 B
Go

//go:build windows
// +build windows
package main
func rmcmd(target string) string {
return "DEL /F /S " + target
}
func mkdircmd(target string) string {
return "if not exist " + target + " mkdir " + target
}