Skip to content

Commit

Permalink
Add return on missing dependency (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte committed Aug 26, 2024
1 parent 517f6e5 commit 13721b9
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 @@ -241,6 +241,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 shell scripts
shell_list = glob('**/*.sh', recursive=True, root_dir=output_dir)
Expand Down

0 comments on commit 13721b9

Please sign in to comment.