Files
ddw3/tools/generate_compare_deps.py
Filipe Rodrigues 17640c3c04 Made python tools non-executable.
This enforces needing to call them explicitly with the interpreter.
2023-06-18 19:00:24 +01:00

11 lines
224 B
Python

#!/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}")