From 32321cc1a27c55732a48f7690626d74c238b01cb Mon Sep 17 00:00:00 2001 From: Arnaud Levy Date: Sun, 13 Apr 2025 12:10:19 +0200 Subject: [PATCH] Update get-url.ts --- src/get-url.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/get-url.ts b/src/get-url.ts index b150f49..6ee9e07 100644 --- a/src/get-url.ts +++ b/src/get-url.ts @@ -9,14 +9,14 @@ export default function getURL( version: string } ): string { - let extendedStr = ''; - if (options.extended === 'true') { - extendedStr = 'extended_'; - } let withdeployStr = ''; if (options.withdeploy === 'true') { withdeployStr = 'withdeploy_'; } + let extendedStr = ''; + if (options.extended === 'true' || withdeployStr) { + extendedStr = 'extended_'; + } let ext = 'tar.gz'; if (system.os === 'Windows') { ext = 'zip';