Skip to content

Commit

Permalink
Fix stickers in/output directory defaults to site-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Feb 4, 2024
1 parent 780073b commit 5afa4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sticker_convert/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def check_root_dir_exe_writable() -> bool:
or Path("/usr/local/bin") in ROOT_DIR_EXE.parents
or Path("C:/Program Files") in ROOT_DIR_EXE.parents
or Path("/Applications/") in ROOT_DIR_EXE.parents
or Path("site-packages") in ROOT_DIR_EXE.parents
or "site-packages" in ROOT_DIR_EXE.as_posix()
):
return False
else:
Expand Down

0 comments on commit 5afa4af

Please sign in to comment.