From 3def0bed7ae7879f08aeedaef10d3d7ad93ebdcf Mon Sep 17 00:00:00 2001 From: Ryan Schumacher Date: Wed, 7 Sep 2022 06:12:25 -0500 Subject: [PATCH] Fix warning ARCH typo --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index ab23cc0..df81950 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -73,7 +73,7 @@ export function getArch(): string[] { if (arch && archs.length > 0) { core.warning( `Both "${Inputs.ARCH}" and "${Inputs.ARCHS}" inputs are set. ` - + `Please use "${Inputs.ARCH}" if you want to provide multiple ` + + `Please use "${Inputs.ARCHS}" if you want to provide multiple ` + `ARCH else use ${Inputs.ARCH}". "${Inputs.ARCHS}" takes preference.` ); }