Files
ddw3/tools/generate_compare_deps.py
Filipe Rodrigues 13520e2890 Initial commit.
Can build the final binary.
2022-10-20 21:17:29 +01:00

11 lines
224 B
Python
Executable File

#!/bin/env python3
deps = []
with open("checksums.sha256") as f:
for line in f:
[_, dep_path] = line.split(' ')
dep_path = dep_path.rstrip('\n')
deps.append(dep_path)
deps = ' '.join(deps)
print(f"compare: {deps}")