Skip to content

Commit

Permalink
fix: 修复旧版控制中心无法加入内测的问题 (#129)
Browse files Browse the repository at this point in the history
将其加入允许安装的列表

Bug: https://pms.uniontech.com/bug-view-273975.html
Log: 修复旧版控制中心无法加入内测的问题
  • Loading branch information
ArchieMeng authored Sep 19, 2024
1 parent 111b108 commit 97cd1ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lastore-daemon/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ const (
langSelectorPath = "/usr/lib/deepin-daemon/langselector"
controlCenterPath = "/usr/bin/dde-control-center"
controlCenterCmdLine = "/usr/share/applications/dde-control-center.deskto" // 缺个 p 是因为 deepin-turbo 修改命令的时候 buffer 不够用, 所以截断了.
oldControlCenterPath = "/usr/lib/x86_64-linux-gnu/dde-control-center/dde-control-center-old"
dataTransferPath = "/usr/bin/deepin-data-transfer"
amDaemonPath = "/usr/bin/dde-application-manager"
launcherPath = "/usr/bin/dde-launcher"
Expand All @@ -273,6 +274,7 @@ var (
printerHelperPath,
langSelectorPath,
controlCenterPath,
oldControlCenterPath,
dataTransferPath,
}
allowRemovePackageExecPaths = strv.Strv{
Expand All @@ -281,6 +283,7 @@ var (
sessionDaemonPath,
langSelectorPath,
controlCenterPath,
oldControlCenterPath,
amDaemonPath,
launcherPath,
amDaemonCompatPath,
Expand Down

0 comments on commit 97cd1ce

Please sign in to comment.