Skip to content

Commit

Permalink
Add return on missing dependency (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte authored Aug 26, 2024
1 parent b4452f3 commit f84fa65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cinnamon-spices-makepot
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ def make_pot(uuid: str) -> CapturedOutput:

if os.path.exists(pot_file_path):
pot_file_path.chmod(0o0644)
else:
return output

# Extract translatable strings from glade
glade_list = glob('**/*.glade', recursive=True, root_dir=output_dir)
Expand Down

0 comments on commit f84fa65

Please sign in to comment.