From 42f82e67f98845dfa6acb1190ba2c7a4e95e9ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Jyl=C3=A4nki?= Date: Mon, 17 Jul 2017 20:30:42 +0300 Subject: [PATCH] Fix an issue where empty line at the end of the stored tag files cause an incorrect sdk name 'sdk--64bit' to show up. --- emsdk | 1 + 1 file changed, 1 insertion(+) diff --git a/emsdk b/emsdk index 406bc47..16e9a1c 100755 --- a/emsdk +++ b/emsdk @@ -1647,6 +1647,7 @@ def load_sdk_manifest(): global tools, sdks for i in range(len(category_list)): ver = category_list[i] + if len(ver.strip()) == 0: continue t2 = copy.copy(t) for p, v in vars(t2).iteritems(): if isinstance(v, basestring) and param in v: