We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37379c8 commit 97c77b6Copy full SHA for 97c77b6
build-aux/library-index.js
@@ -47,15 +47,15 @@ for (const file_info of demos_dir.enumerate_children(
47
if (demo_dir.get_child("main.js").query_exists(null)) {
48
languages.push("javascript");
49
}
50
- if (demo_dir.get_child("main.py").query_exists(null)) {
51
- languages.push("python");
52
- }
53
if (demo_dir.get_child("main.vala").query_exists(null)) {
54
languages.push("vala");
55
56
if (demo_dir.get_child("code.rs").query_exists(null)) {
57
languages.push("rust");
58
+ if (demo_dir.get_child("main.py").query_exists(null)) {
+ languages.push("python");
+ }
59
demo.languages = languages;
60
61
demos.push(demo);
0 commit comments