Skip to content

Commit a2d5d80

Browse files
committed
fix(ui): documentation URL
1 parent ee75f72 commit a2d5d80

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

module/conan/view.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
func badConanView(ctx context.Context) {
99
u := ui.Use(ctx)
10-
u.Display(ui.MsgWarn, "识别到您的环境中 conan 无法正常运行,可能会导致检测结果不完整或失败,访问 https://www.murphysec.com/docs/quick-start/language-support/ 了解详情")
10+
u.Display(ui.MsgWarn, "识别到您的环境中 conan 无法正常运行,可能会导致检测结果不完整或失败,访问 https://murphysec.com/docs/faqs/quick-start-for-beginners/programming-language-supported.html 了解详情")
1111
}
1212

1313
func printConanError(ctx context.Context, e *conanError) {

module/maven/maven.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func ScanMavenProject(ctx context.Context, task *model.InspectionTask) ([]model.
4747

4848
// analyze pom file
4949
if useBackupResolver {
50-
ui.Use(ctx).Display(ui.MsgWarn, "通过 Maven获取依赖信息失败,可能会导致检测结果不完整或失败,访问 https://www.murphysec.com/docs/quick-start/language-support/ 了解详情")
50+
ui.Use(ctx).Display(ui.MsgWarn, "通过 Maven获取依赖信息失败,可能会导致检测结果不完整或失败,访问 https://murphysec.com/docs/faqs/quick-start-for-beginners/programming-language-supported.html 了解详情")
5151
var e error
5252
deps, e = BackupResolve(ctx, dir)
5353
if e != nil {

0 commit comments

Comments
 (0)