소스 검색

special path needed

Schultz 8 년 전
부모
커밋
29a29d0f55
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      execution.py

+ 1
- 1
execution.py 파일 보기

@@ -66,7 +66,7 @@ def runGitstats(pathsArr):
66 66
 	output_dir=sys.argv[2]
67 67
 	for path in pathsArr:
68 68
 		if gitDirectoryExists(path):
69
-			os.system("./gitstats "+path+" "+output_dir)
69
+			os.system("./gitstats "+os.path.join("/home/gschultz/8956n/.repo/projects",path)+" "+output_dir)
70 70
 
71 71
 	os.system("./gitstats " +path)
72 72