From 22d5528d80f31683fc0d95171c410653058a33b9 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 6 Nov 2024 00:05:28 +0100 Subject: [PATCH] addopt --- pipeline/backend/lxc/lxc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline/backend/lxc/lxc.go b/pipeline/backend/lxc/lxc.go index c8003aa50..8b311171c 100644 --- a/pipeline/backend/lxc/lxc.go +++ b/pipeline/backend/lxc/lxc.go @@ -184,9 +184,9 @@ func (e *lxc) StartStep(ctx context.Context, step *types.Step, taskUUID string) } env = append(env, "PATH="+os.Getenv("PATH")) - defaultCloneImage := strings.Split(constant.DefaultCloneImage, ":") + defaultCloneImage := strings.Split(constant.DefaultClonePlugin, ":") if len(defaultCloneImage) != 2 { - err := fmt.Errorf("%s does not split in two but in %v", constant.DefaultCloneImage, defaultCloneImage) + err := fmt.Errorf("%s does not split in two but in %v", constant.DefaultClonePlugin, defaultCloneImage) log.Error().Err(err).Msg("") return err }