Browse Source

special path needed

Schultz 8 years ago
parent
commit
29a29d0f55
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      execution.py

+ 1
- 1
execution.py View File

66
 	output_dir=sys.argv[2]
66
 	output_dir=sys.argv[2]
67
 	for path in pathsArr:
67
 	for path in pathsArr:
68
 		if gitDirectoryExists(path):
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
 	os.system("./gitstats " +path)
71
 	os.system("./gitstats " +path)
72
 
72