Skip to content

Commit

Permalink
Fix compile messages path
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodiegoss committed Nov 21, 2024
1 parent 6e97b9d commit 94ac744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/scripts/compilemessages.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def main():
"""
# Walk entire tree, looking for locale directories
basedirs = ["locale"]
for dirpath, dirnames, filenames in os.walk(".", topdown=True):
for dirpath, dirnames, filenames in os.walk("/jandig/locale", topdown=True):
for dirname in dirnames:
if dirname == "locale":
basedirs.append(os.path.join(dirpath, dirname))
Expand Down

0 comments on commit 94ac744

Please sign in to comment.