From 1b1f08f356d3f10d91e50c09dda6d44372ca908c Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 30 Oct 2019 11:22:52 -0700 Subject: [PATCH] Use quotes, so we handle python paths with spaces. Fixes #381 (#383) --- emsdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emsdk b/emsdk index 38c40d9..6859b54 100755 --- a/emsdk +++ b/emsdk @@ -15,4 +15,4 @@ if [ $? != 0 ]; then python=python fi -exec $python $0.py "$@" +exec "$python" "$0.py" "$@"