@synkro-sh/cli 1.3.6 → 1.3.7

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/bootstrap.js CHANGED
@@ -2925,7 +2925,7 @@ function writeConfigEnv(opts) {
2925
2925
  `SYNKRO_GATEWAY_URL=${shellQuoteSingle(safeGateway)}`,
2926
2926
  `SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
2927
2927
  `SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
2928
- `SYNKRO_VERSION=${shellQuoteSingle("1.3.6")}`
2928
+ `SYNKRO_VERSION=${shellQuoteSingle("1.3.7")}`
2929
2929
  ];
2930
2930
  if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
2931
2931
  if (safeOrgId) lines.push(`SYNKRO_ORG_ID=${shellQuoteSingle(safeOrgId)}`);
@@ -3167,7 +3167,7 @@ function detectGitRepo2() {
3167
3167
  }
3168
3168
  function getClaudeProjectsFolder() {
3169
3169
  const cwd = process.cwd();
3170
- const sanitized = "-" + cwd.replace(/\//g, "-");
3170
+ const sanitized = cwd.replace(/\//g, "-");
3171
3171
  const projectsDir = join5(homedir4(), ".claude", "projects", sanitized);
3172
3172
  return existsSync6(projectsDir) ? projectsDir : null;
3173
3173
  }