Spaces:
reon314
/
Runtime error

llm / config /prepare.js
Marco Beretta
LibreChat upload repo
3b6afc0
raw
history blame
No virus
306 Bytes
const { exec } = require('child_process');
if (process.env.NODE_ENV !== 'CI') {
exec('npx husky install', (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
});
}