fixed path error

This commit is contained in:
link 2021-11-25 19:41:25 +08:00
parent 9057290188
commit 049090444e
3 changed files with 8 additions and 8 deletions

View File

@ -690,8 +690,9 @@ func UnInstallApp(c *gin.Context) {
//step: 删除文件夹 //step: 删除文件夹
vol := gjson.Get(info.Volumes, "#.host") vol := gjson.Get(info.Volumes, "#.host")
for _, v := range vol.Array() { for _, v := range vol.Array() {
if strings.Contains(v.String(), appId) {
service.MyService.App().DelAppConfigDir(appId, v.String()) service.MyService.App().DelAppConfigDir(v.String())
}
} }
//step: 删除install log //step: 删除install log

View File

@ -6,7 +6,6 @@ import (
"time" "time"
"github.com/IceWhaleTech/CasaOS/pkg/config" "github.com/IceWhaleTech/CasaOS/pkg/config"
"github.com/IceWhaleTech/CasaOS/pkg/docker"
"github.com/IceWhaleTech/CasaOS/pkg/utils/command" "github.com/IceWhaleTech/CasaOS/pkg/utils/command"
loger2 "github.com/IceWhaleTech/CasaOS/pkg/utils/loger" loger2 "github.com/IceWhaleTech/CasaOS/pkg/utils/loger"
model2 "github.com/IceWhaleTech/CasaOS/service/model" model2 "github.com/IceWhaleTech/CasaOS/service/model"
@ -26,7 +25,7 @@ type AppService interface {
GetAppDBInfo(id string) model2.AppListDBModel GetAppDBInfo(id string) model2.AppListDBModel
UpdateApp(m model2.AppListDBModel) UpdateApp(m model2.AppListDBModel)
GetSimpleContainerInfo(name string) (types.Container, error) GetSimpleContainerInfo(name string) (types.Container, error)
DelAppConfigDir(id, path string) DelAppConfigDir(path string)
GetSystemAppList() *[]model2.MyAppList GetSystemAppList() *[]model2.MyAppList
} }
@ -224,8 +223,8 @@ func (a *appStruct) UpdateApp(m model2.AppListDBModel) {
a.db.Table(model2.CONTAINERTABLENAME).Save(&m) a.db.Table(model2.CONTAINERTABLENAME).Save(&m)
} }
func (a *appStruct) DelAppConfigDir(id, path string) { func (a *appStruct) DelAppConfigDir(path string) {
command.OnlyExec("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;DelAppConfigDir " + docker.GetDir(id, path)) command.OnlyExec("source " + config.AppInfo.ProjectPath + "/shell/helper.sh ;DelAppConfigDir " + path)
} }
func (a *appStruct) RemoveContainerById(id string) { func (a *appStruct) RemoveContainerById(id string) {

View File

@ -1,4 +1,4 @@
package types package types
const CURRENTVERSION = "0.2.0" const CURRENTVERSION = "0.2.1"
const BODY = "<li>add sync function</li><li>fixed some error</li>" const BODY = "<li>fixed path error</li>"