소스 검색

Saves the found git path to avoid constant searchs

main
Eric Amodio 7 년 전
부모
커밋
14b9d93807
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      src/git/gitLocator.ts

+ 6
- 1
src/git/gitLocator.ts 파일 보기

@ -1,5 +1,5 @@
'use strict';
import { spawnPromise } from 'spawn-rx';
import { findActualExecutable, spawnPromise } from 'spawn-rx';
import * as path from 'path';
export interface IGit {
@ -13,6 +13,11 @@ function parseVersion(raw: string): string {
async function findSpecificGit(path: string): Promise<IGit> {
const version = await spawnPromise(path, ['--version']);
// If needed, let's update our path to avoid the search on every command
if (!path || path === 'git') {
path = findActualExecutable(path, ['--version']).cmd;
}
return {
path,
version: parseVersion(version.trim())

불러오는 중...
취소
저장