athena-mcp 1.0.0 → 1.0.1
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/install.js +1 -1
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -156,7 +156,7 @@ if (skipSystem) {
|
|
|
156
156
|
} else {
|
|
157
157
|
info('Installing Slither...');
|
|
158
158
|
const pip = commandExists('pip3') ? 'pip3' : 'pip';
|
|
159
|
-
run(`${pip} install slither-analyzer`, { optional: true });
|
|
159
|
+
run(`${pip} install --break-system-packages slither-analyzer`, { optional: true });
|
|
160
160
|
if (commandExists('slither')) log('Slither installed');
|
|
161
161
|
else warn('Slither install failed — install manually: pip install slither-analyzer');
|
|
162
162
|
}
|