Skip to content
This repository has been archived by the owner on Apr 13, 2024. It is now read-only.

Commit

Permalink
deterministic dependency order
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed Dec 3, 2019
1 parent a265d35 commit ec3b459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion can/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import os
from opendbc.can.process_dbc import process

dbcs = []
for x in os.listdir('../'):
for x in sorted(os.listdir('../')):
if x.endswith(".dbc"):
def compile_dbc(target, source, env):
process(source[0].path, target[0].path)
Expand Down

0 comments on commit ec3b459

Please sign in to comment.