소스 검색

调试功能

zou.yingbin 4 년 전
부모
커밋
b4d8b278fc
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      controllers/other/update.go

+ 1 - 3
controllers/other/update.go

@@ -70,10 +70,8 @@ func createsh() bool {
 	} else {
 		return false
 	}
-	// 先删除原脚本
-	os.Remove(dir + "/update.sh")
 	// 创建文件
-	if f, err := os.OpenFile(dir+"/update.sh", os.O_RDWR|os.O_CREATE, 0666); err == nil {
+	if f, err := os.OpenFile(dir+"/update.sh", os.O_RDWR|os.O_TRUNC|os.O_CREATE, 0666); err == nil {
 		_, err = f.Write([]byte(strShell))
 		f.Close()
 	} else {