From 8d1ad85366555d9b1a7c4e9d6b376a53103ed43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Jyl=C3=A4nki?= Date: Fri, 25 Sep 2015 17:09:21 +0300 Subject: [PATCH] Remove Windows-specific help message in emsdk list. --- emsdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emsdk b/emsdk index d06a7ca..db0def7 100755 --- a/emsdk +++ b/emsdk @@ -1631,7 +1631,7 @@ def main(): print('Items marked with * are activated for the current user.') if has_partially_active_tools[0]: env_cmd = 'emsdk_env.bat' if WINDOWS else 'source ./emsdk_env.sh' - print('Items marked with (*) are selected for use, but your current shell environment is not configured to use them. Type "' + env_cmd + '" to set up your current shell to use them, or call "emsdk activate --global " to permanently activate them.') + print('Items marked with (*) are selected for use, but your current shell environment is not configured to use them. Type "' + env_cmd + '" to set up your current shell to use them' + (', or call "emsdk activate --global " to permanently activate them.' if WINDOWS else '.')) if not show_old: print('') print("To access the historical archived versions, type 'emsdk list --old'")