Skip to content

Commit 833b1c0

Browse files
committed
Fix the path string for each platform
Signed-off-by: Jiyeong Seok <[email protected]>
1 parent 4a1b625 commit 833b1c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fosslight_dependency/_package_manager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
logger = logging.getLogger(constant.LOGGER_NAME)
2424

2525
# binary url to check license text
26-
_license_scanner_linux = "third_party/nomos/nomossa"
27-
_license_scanner_macos = "third_party/askalono/askalono_macos"
28-
_license_scanner_windows = "third_party\\askalono\\askalono.exe"
26+
_license_scanner_linux = os.path.join('third_party', 'nomos', 'nomossa')
27+
_license_scanner_macos = os.path.join('third_party', 'askalono', 'askalono_macos')
28+
_license_scanner_windows = os.path.join('third_party', 'askalono', 'askalono.exe')
2929

3030

3131
class PackageManager:

0 commit comments

Comments
 (0)