@synkro-sh/cli 1.6.19 → 1.6.20
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 +2 -2
- package/package.json +1 -1
package/dist/bootstrap.js
CHANGED
|
@@ -6651,7 +6651,7 @@ function writeConfigEnv(opts) {
|
|
|
6651
6651
|
`SYNKRO_CREDENTIALS_PATH=${shellQuoteSingle(credsPath)}`,
|
|
6652
6652
|
`SYNKRO_TIER=${shellQuoteSingle(safeTier)}`,
|
|
6653
6653
|
`SYNKRO_INFERENCE=${shellQuoteSingle(safeInference)}`,
|
|
6654
|
-
`SYNKRO_VERSION=${shellQuoteSingle("1.6.
|
|
6654
|
+
`SYNKRO_VERSION=${shellQuoteSingle("1.6.20")}`
|
|
6655
6655
|
];
|
|
6656
6656
|
if (safeSynkroBin) lines.push(`SYNKRO_CLI_BIN=${shellQuoteSingle(safeSynkroBin)}`);
|
|
6657
6657
|
if (safeUserId) lines.push(`SYNKRO_USER_ID=${shellQuoteSingle(safeUserId)}`);
|
|
@@ -9318,7 +9318,7 @@ var args = process.argv.slice(2);
|
|
|
9318
9318
|
var cmd = args[0] || "";
|
|
9319
9319
|
var subArgs = args.slice(1);
|
|
9320
9320
|
function printVersion() {
|
|
9321
|
-
console.log("1.6.
|
|
9321
|
+
console.log("1.6.20");
|
|
9322
9322
|
}
|
|
9323
9323
|
function printHelp2() {
|
|
9324
9324
|
console.log(`Synkro CLI \u2014 runtime safety for AI coding agents
|
package/package.json
CHANGED