mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 10:33:47 +08:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { exec, which } from 'shelljs';
|
|
|
|
function ignoreCaseGit() {
|
|
try {
|
|
if (which('git')) {
|
|
exec('git config core.ignorecase false ');
|
|
}
|
|
} catch (error) {}
|
|
}
|
|
ignoreCaseGit();
|