labgate 0.5.46 → 0.5.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib/ui.js CHANGED
@@ -4805,6 +4805,9 @@ function sanitizeClaudeOauthCodeForCli(raw) {
4805
4805
  return text;
4806
4806
  }
4807
4807
  function resolveClaudeCliBinaryForSandboxHome(sandboxHome) {
4808
+ const override = (process.env.LABGATE_CLAUDE_AUTH_CLI_PATH || '').trim();
4809
+ if (override)
4810
+ return override;
4808
4811
  const fromSandboxHome = (0, path_1.join)(sandboxHome, '.npm-global', 'bin', 'claude');
4809
4812
  if ((0, fs_1.existsSync)(fromSandboxHome))
4810
4813
  return fromSandboxHome;