mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-25 11:58:43 +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();
|