Skip to content

Commit

Permalink
Update comment on dir sorting (will squash).
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Aug 10, 2016
1 parent ba4f778 commit 97bad48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/sconsUtils/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def initialize(cls, packageName, versionString=None, eupsProduct=None, eupsProdu
dirs[:] = []
continue
dirs[:] = [d for d in dirs if not d.startswith('.')]
dirs.sort() # happy coincidence that include < libs < python < tests
dirs.sort() # os.walk order is not specified, but we want builds to be deterministic
if "SConscript" in files:
scripts.append(os.path.join(root, "SConscript"))
if sconscriptOrder is None:
Expand Down

0 comments on commit 97bad48

Please sign in to comment.