From e1efb6e0d2ec4f644e628e23ef878cb2a45958f3 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 22 Nov 2020 03:35:27 +0300 Subject: [PATCH] OS lib separate output fix --- tools/make_libs_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/make_libs_list.py b/tools/make_libs_list.py index cf76604..387e532 100755 --- a/tools/make_libs_list.py +++ b/tools/make_libs_list.py @@ -5,7 +5,7 @@ import json import click __author__ = "Alexander Popov" -__version__ = "1.0.1" +__version__ = "1.0.2" __license__ = "Unlicense" @@ -18,7 +18,7 @@ def make_output(platform, output): libraries = parse_libs() # OS libs separate - _ = {"win": ";", "linux": ":", "darwin": ":"} + _ = {"win32": ";", "linux": ":", "darwin": ":"} out_lib = str()