mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
const { spawn } = require('child_process');
|
|
|
|
const subprocess = spawn('git', ['config', '--local', 'core.hooksPath', '.githooks/']);
|
|
|
|
subprocess.on('error', () => {
|
|
console.error('Failed to install git hook.');
|
|
});
|