Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 修复旧版控制中心无法加入内测的问题 #129

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading