Skip to content

Commit 99d8500

Browse files
committed
fix incorrect condition reading
1 parent ebb9cd4 commit 99d8500

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/remove_dev.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def search_and_remove(wiki: str):
7575

7676
def main():
7777
for wiki in get_wikis():
78-
if wiki == "commons" and os.getenv("INCLUDE_COMMONS") == "true":
78+
if wiki == "commons" and os.getenv("INCLUDE_COMMONS") != "true":
7979
continue
8080
search_and_remove(wiki)
8181

0 commit comments

Comments
 (0)