From 886fe44124b93ae09de5ef8e86630f2b9f2041a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Jyl=C3=A4nki?= Date: Tue, 15 Oct 2013 19:38:00 +0300 Subject: [PATCH] 'latest' can be passed as param to 'activate' as well. --- emsdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emsdk b/emsdk index b25f28a..31728b9 100644 --- a/emsdk +++ b/emsdk @@ -728,7 +728,7 @@ def main(): return 1 cmd = sys.argv[1] - if (cmd == 'active_path' or cmd == 'update' or cmd == 'install') and len(sys.argv) >= 3: + if (cmd == 'active_path' or cmd == 'update' or cmd == 'install' or cmd == 'activate') and len(sys.argv) >= 3: if sys.argv[2] == 'latest': sys.argv[2] = str(find_latest_sdk()) elif sys.argv[2] == 'latest-32bit':