From aece5d3d5fb2b0b7494911f2c4dddc372e7d3894 Mon Sep 17 00:00:00 2001 From: Swen Date: Mon, 24 Jun 2024 03:21:06 +0100 Subject: [PATCH] --locked cli --- cli/src/utils/processPhotonIndexer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/utils/processPhotonIndexer.ts b/cli/src/utils/processPhotonIndexer.ts index cd7b2c5005..33938c6b09 100644 --- a/cli/src/utils/processPhotonIndexer.ts +++ b/cli/src/utils/processPhotonIndexer.ts @@ -16,7 +16,7 @@ export async function startIndexer( resolvedOrNull === null || (checkPhotonVersion && !(await isExpectedPhotonVersion(PHOTON_VERSION))) ) { - const message = `Photon indexer not found. Please install it by running "cargo install photon-indexer --version ${PHOTON_VERSION}"`; + const message = `Photon indexer not found. Please install it by running "cargo install photon-indexer --version ${PHOTON_VERSION} --locked"`; console.log(message); throw new Error(message); } else {