From: Julien Rioux Date: Sat, 14 Jan 2012 20:49:56 +0000 (-0500) Subject: Regtest script: Don't walk the share folders. X-Git-Tag: release/2.15.27-1~34 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a9635c4d66da27d1bdff3a4597137ad11ce6c20d;p=lilypond.git Regtest script: Don't walk the share folders. These share folders are copied to the output dir for safekeeping. The regtest script can skip them. --- diff --git a/scripts/build/output-distance.py b/scripts/build/output-distance.py index cf213da8b1..d9933efa08 100755 --- a/scripts/build/output-distance.py +++ b/scripts/build/output-distance.py @@ -842,6 +842,10 @@ class ComparisonData: sys.exit(1) for d in dirs: + # don't walk the share folders + if d.startswith("share"): + continue + d1 = os.path.join (dir1, d) d2 = os.path.join (dir2, d)