From e821a8a10416c729340f3ca862c463e482874254 Mon Sep 17 00:00:00 2001 From: shy Date: Tue, 12 Mar 2024 13:39:48 +0800 Subject: [PATCH] add some --- base/cli/runtime.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/cli/runtime.go b/base/cli/runtime.go index 6ee9b6bb..1873da75 100644 --- a/base/cli/runtime.go +++ b/base/cli/runtime.go @@ -20,7 +20,7 @@ import ( func _runtime_init(m *ice.Message) { if ice.Info.Make.Remote == "" { ice.Info.Make.Remote = m.Cmdx(SYSTEM, GIT, "config", "--get", "remote.origin.url") - ice.Info.Make.Module = srtings.Split(ice.Info.Make.Remote, "://")[1] + ice.Info.Make.Module = strings.Split(ice.Info.Make.Remote, "://")[1] } count := kit.Int(m.Conf(RUNTIME, kit.Keys(BOOT, mdb.COUNT))) defer m.Conf(RUNTIME, kit.Keys(BOOT, mdb.COUNT), count+1)