From de8ca3e24c8d7a29f647c7ed7cd684f3c8118e0c Mon Sep 17 00:00:00 2001 From: Harrison Weinstock Date: Thu, 21 May 2026 17:00:47 +0000 Subject: [PATCH] fix: add -g flag to bundle install instructions --- scripts/bundle.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bundle.mjs b/scripts/bundle.mjs index 29cb5d745..613258cf8 100644 --- a/scripts/bundle.mjs +++ b/scripts/bundle.mjs @@ -158,7 +158,7 @@ const cliTarballPath = path.join(cliRoot, cliTarballName); if (fs.existsSync(cliTarballPath)) { log(`Done! Tarball: ${cliTarballPath}`); - log(`Install with: npm install ${cliTarballPath}`); + log(`Install with: npm install -g ${cliTarballPath}`); log('When you run agentcore create, the bundled CDK constructs will be installed automatically.'); } else { log(`Done! Check ${cliRoot} for the .tgz file.`);