Browse Source

Merge branch 'master' into toolset-fix-448

Conflicts:
	toolset/run-ci.py
Hamilton Turner 11 years ago
parent
commit
462c1a3b2a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/run-ci.py

+ 1 - 1
toolset/run-ci.py

@@ -236,7 +236,7 @@ class CIRunnner:
     changes = os.linesep.join([s for s in changes.splitlines() if s]) # drop empty lines
     if len(changes.splitlines()) > 1000:
       log.debug("Change list is >1000 lines, uploading to sprunge.us instead of printing to console")
-      url = subprocess.check_output("echo '%s' | curl -F 'sprunge=<-' http://sprunge.us" % changes , shell=True)
+      url = subprocess.check_output("git log --name-only %s | curl -F 'sprunge=<-' http://sprunge.us" % self.commit_range, shell=True)
       log.debug("Uploaded to %s", url)
     else:
       log.debug("Result:\n%s", changes)