mirror of
https://github.com/appleboy/drone-scp.git
synced 2026-06-13 18:41:48 +08:00
13 lines
214 B
Go
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
|
|
}
|