mirror of https://github.com/1Panel-dev/1Panel
fix: 解决计划任务备份根目录下文件夹失败的问题 (#1444)
parent
f02f32456e
commit
62becf819d
|
@ -203,6 +203,9 @@ func handleTar(sourceDir, targetDir, name, exclusionRules string) error {
|
|||
if strings.Contains(sourceDir, "/") {
|
||||
itemDir := strings.ReplaceAll(sourceDir[strings.LastIndex(sourceDir, "/"):], "/", "")
|
||||
aheadDir := sourceDir[:strings.LastIndex(sourceDir, "/")]
|
||||
if len(aheadDir) == 0 {
|
||||
aheadDir = "/"
|
||||
}
|
||||
path += fmt.Sprintf("-C %s %s", aheadDir, itemDir)
|
||||
} else {
|
||||
path = sourceDir
|
||||
|
|
Loading…
Reference in New Issue