From 34d13533e0331e0e19d68fcfaf480f841ef32c59 Mon Sep 17 00:00:00 2001 From: Phil Pluckthun Date: Thu, 19 Dec 2024 03:22:44 +0000 Subject: [PATCH] Apply lints --- .../findProjectDirAndVerifyProjectSetupAsync.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/eas-cli/src/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.ts b/packages/eas-cli/src/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.ts index 559109c143..e69c507b53 100644 --- a/packages/eas-cli/src/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.ts +++ b/packages/eas-cli/src/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.ts @@ -103,7 +103,7 @@ export async function findProjectRootAsync({ } } -let ranEnsureEasCliIsNotInDependenciesAsync = false; +let ranEnsureEasCliIsNotInDependencies = false; /** * Determine the project root directory and ensure some constraints about the project setup @@ -115,8 +115,8 @@ let ranEnsureEasCliIsNotInDependenciesAsync = false; export async function findProjectDirAndVerifyProjectSetupAsync(): Promise { const projectDir = await findProjectRootAsync(); await applyCliConfigAsync(projectDir); - if (!ranEnsureEasCliIsNotInDependenciesAsync) { - ranEnsureEasCliIsNotInDependenciesAsync = true; + if (!ranEnsureEasCliIsNotInDependencies) { + ranEnsureEasCliIsNotInDependencies = true; await ensureEasCliIsNotInDependenciesAsync(projectDir); } return projectDir;