Skip to content

Commit

Permalink
fix: platform dependent bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
nmvrs committed Sep 17, 2024
1 parent bab60fe commit e5cfb2d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion rerun_animation/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@
"Constants",
]

if platform.system() == "Windows":
_BIN_PATH_: str = "bin"
else:
_BIN_PATH_: str = ""


class Constants:
BINARY_DIRECTORY_NAME: str = "bin"
BINARY_DIRECTORY_NAME: str = _BIN_PATH_
CURRENT_CONFIG_FILENAME: str = "rerun-animation.ini"
DEFAULT_CONFIG_FILENAME: str = "default.ini"
TEMPLATE_CONFIG_FILENAME: str = "template.ini"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_requirements():


PACKAGE_NAME = "rerun-animation"
VERSION = "0.1.1"
VERSION = "0.1.2"
AUTHOR = "Moverse P.C."
EMAIL = "[email protected]"
LICENSE = "Apache 2.0"
Expand Down

0 comments on commit e5cfb2d

Please sign in to comment.