We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
get_libname.py
1 parent e415c67 commit 0cbf1c0Copy full SHA for 0cbf1c0
ci/get_libname.py
@@ -17,4 +17,8 @@
17
else:
18
sys.stderr.write('Unwrapping list with single entry in meta/libraries.json.\n')
19
lib_data = lib_data[0]
20
- print(lib_data['key'])
+# Special cases where the full library key and name/folder do not match
21
+name_fixups = { 'logic/tribool': 'logic' }
22
+
23
+key = lib_data['key']
24
+print(name_fixups.get(key, key))
0 commit comments