summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrazorloves <razorloves@gmail.com>2019-07-14 21:58:23 -0500
committerrazorloves <razorloves@gmail.com>2019-07-22 06:34:35 +0200
commit9d1d3ba8a1675da55022fcd430a1490211525f74 (patch)
tree4abd9a3c9209bfa1838ad259362e7bf4fe6d0130
parentc4ed5a6a06b18efaa917af086c57466285b51fb1 (diff)
downloadscripts-9d1d3ba8a1675da55022fcd430a1490211525f74.tar.gz
scripts-9d1d3ba8a1675da55022fcd430a1490211525f74.tar.bz2
scripts-9d1d3ba8a1675da55022fcd430a1490211525f74.zip
scripts: Change devices.py output to correct file name
Change-Id: I4f16acfb45d9afa50beafab05019890a49b1f749
-rw-r--r--device-deps-regenerator/devices.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/device-deps-regenerator/devices.py b/device-deps-regenerator/devices.py
index b2533cf..13d66b0 100644
--- a/device-deps-regenerator/devices.py
+++ b/device-deps-regenerator/devices.py
@@ -30,7 +30,7 @@ for repo in mapping:
print("warning: dupe: %s"%codename)
devices[codename] = sorted(list(set(simplify_reverse_deps({'repo': repo}, codename))))
-with open('devices.json', 'w') as f:
+with open('device_deps.json', 'w') as f:
out = {'devices': devices, 'suffixes': suffixes}
out = devices
json.dump(out, f, indent=4, sort_keys=True)