From a19563e7b93b3dd54c8d59fff9b63271c278e5c4 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Wed, 19 Jun 2024 08:04:04 +0300 Subject: [PATCH] Remove default universal for get operation --- cli/src/get.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cli/src/get.ts b/cli/src/get.ts index 815a1b57d..698476b02 100644 --- a/cli/src/get.ts +++ b/cli/src/get.ts @@ -19,10 +19,6 @@ import { promisify, matchExtensionId, optionalStat, makeDirs, addEnvOptions } fr */ export async function getExtension(options: GetOptions): Promise { addEnvOptions(options); - if (!options.target) { - options.target = 'universal'; - } - const registry = new Registry(options); const match = matchExtensionId(options.extensionId); if (!match) {