From b6b5b5c757ec01e0224599743f32a21593130895 Mon Sep 17 00:00:00 2001 From: Manuel Romei Date: Mon, 25 Aug 2025 19:13:44 +0200 Subject: [PATCH] fix(cli): get repo-name from the actual CLI option --- drone/exec/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/exec/flags.go b/drone/exec/flags.go index 88d9c419..67e801d5 100644 --- a/drone/exec/flags.go +++ b/drone/exec/flags.go @@ -64,7 +64,7 @@ func mapOldToExecCommand(input *cli.Context) *execCommand { Trusted: input.Bool("trusted"), Timeout: int64(input.Duration("timeout").Seconds()), Branch: input.String("branch"), - Name: input.String("name"), + Name: input.String("repo"), }, Stage: &drone.Stage{ Name: input.String("pipeline"),