postinstall.ts 194 B

12345678910
  1. import { exec, which } from 'shelljs';
  2. function ignoreCaseGit() {
  3. try {
  4. if (which('git')) {
  5. exec('git config core.ignorecase false ');
  6. }
  7. } catch (error) {}
  8. }
  9. ignoreCaseGit();