diff options
author | morpheus65535 <[email protected]> | 2022-05-02 21:54:10 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2022-05-02 21:54:10 -0400 |
commit | 4c08180e6e0273d5b19aa3c56ecae0338da2b430 (patch) | |
tree | a6d3661d59ae5b4751c48ab608d88b49594f75fb | |
parent | 2f01ab852348669e81c3d19b3a12f5084b04fba8 (diff) | |
download | bazarr-4c08180e6e0273d5b19aa3c56ecae0338da2b430.tar.gz bazarr-4c08180e6e0273d5b19aa3c56ecae0338da2b430.zip |
no log: fixed binaries' directory in the wrong place.
-rwxr-xr-x | bazarr/bin/MacOSX/x86_64/ffmpeg/ffmpeg | bin | 66358440 -> 0 bytes | |||
-rwxr-xr-x | bazarr/bin/MacOSX/x86_64/ffmpeg/ffprobe | bin | 66287768 -> 0 bytes | |||
-rwxr-xr-x | bazarr/bin/MacOSX/x86_64/unrar/unrar | bin | 315012 -> 0 bytes | |||
-rw-r--r-- | bazarr/utilities/binaries.py | 2 |
4 files changed, 1 insertions, 1 deletions
diff --git a/bazarr/bin/MacOSX/x86_64/ffmpeg/ffmpeg b/bazarr/bin/MacOSX/x86_64/ffmpeg/ffmpeg Binary files differdeleted file mode 100755 index d5977ccce..000000000 --- a/bazarr/bin/MacOSX/x86_64/ffmpeg/ffmpeg +++ /dev/null diff --git a/bazarr/bin/MacOSX/x86_64/ffmpeg/ffprobe b/bazarr/bin/MacOSX/x86_64/ffmpeg/ffprobe Binary files differdeleted file mode 100755 index 6a6ad9d42..000000000 --- a/bazarr/bin/MacOSX/x86_64/ffmpeg/ffprobe +++ /dev/null diff --git a/bazarr/bin/MacOSX/x86_64/unrar/unrar b/bazarr/bin/MacOSX/x86_64/unrar/unrar Binary files differdeleted file mode 100755 index 1a9f8f2d9..000000000 --- a/bazarr/bin/MacOSX/x86_64/unrar/unrar +++ /dev/null diff --git a/bazarr/utilities/binaries.py b/bazarr/utilities/binaries.py index 1d6013c58..c5efda782 100644 --- a/bazarr/utilities/binaries.py +++ b/bazarr/utilities/binaries.py @@ -48,7 +48,7 @@ def get_binary(name): return installed_exe else: logging.debug('BAZARR binary not found in path, searching for it...') - binaries_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'bin')) + binaries_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'bin')) system = platform.system() machine = platform.machine() dir_name = name |