Skip to content

Commit 55a019b

Browse files
committed
Fix dev branch check
1 parent 39a144a commit 55a019b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

indexer/src/repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ def delete_unlinked_directories(self):
5959
# skip .DS_store files
6060
if len(files) == 1 and files[0].startswith("."):
6161
continue
62+
cur_dir = root.split(main_dir + "/")[1]
6263
if cur_dir == "dev":
6364
continue
64-
cur_dir = root.split(main_dir + "/")[1]
6565
if self.indexer_github.is_release_exist(cur_dir):
6666
continue
6767
if self.indexer_github.is_tag_exist(cur_dir):

0 commit comments

Comments
 (0)