any-buddy 1.0.9 → 1.0.10
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/lib/tui.mjs +2 -2
- package/package.json +1 -1
package/lib/tui.mjs
CHANGED
|
@@ -146,8 +146,8 @@ export async function runApply({ silent = false } = {}) {
|
|
|
146
146
|
const result = patchBinary(binaryPath, config.previousSalt, config.salt);
|
|
147
147
|
if (!silent) {
|
|
148
148
|
console.log(chalk.green(` Re-patched (${result.replacements} replacements).`));
|
|
149
|
-
warnCodesign(result, binaryPath);
|
|
150
149
|
}
|
|
150
|
+
warnCodesign(result, binaryPath);
|
|
151
151
|
return;
|
|
152
152
|
}
|
|
153
153
|
}
|
|
@@ -157,8 +157,8 @@ export async function runApply({ silent = false } = {}) {
|
|
|
157
157
|
const result = patchBinary(binaryPath, ORIGINAL_SALT, config.salt);
|
|
158
158
|
if (!silent) {
|
|
159
159
|
console.log(chalk.green(` Patched after update (${result.replacements} replacements).`));
|
|
160
|
-
warnCodesign(result, binaryPath);
|
|
161
160
|
}
|
|
161
|
+
warnCodesign(result, binaryPath);
|
|
162
162
|
return;
|
|
163
163
|
}
|
|
164
164
|
if (!silent) console.error('Could not find known salt in binary. Claude Code may have changed the salt string.');
|