mirror of
https://github.com/appleboy/drone-scp.git
synced 2026-06-16 14:49:20 +08:00
13 lines
188 B
Go
13 lines
188 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
func rmcmd(target string) string {
|
|
return "rm -rf " + target
|
|
}
|
|
|
|
func mkdircmd(target string) string {
|
|
return "mkdir -p " + target
|
|
}
|