From 0b94797f96e30e46e466873fe7d437d0471cd92c Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Tue, 8 Apr 2025 11:46:08 +0200 Subject: [PATCH] fix: debug text typo (#698) --- sources/Engine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Engine.ts b/sources/Engine.ts index 41f965a..73b82db 100644 --- a/sources/Engine.ts +++ b/sources/Engine.ts @@ -288,7 +288,7 @@ export class Engine { await specUtils.setLocalPackageManager(path.dirname(result.target), installSpec); } - debugUtils.log(`Falling back to ${fallbackDescriptor.name}@${fallbackDescriptor.range} in the absence of "packageManage" field in ${result.target}`); + debugUtils.log(`Falling back to ${fallbackDescriptor.name}@${fallbackDescriptor.range} in the absence of "packageManager" field in ${result.target}`); return fallbackDescriptor; }