From 1348c0a53dc8ae552a469123ba88ad05649bd9a3 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 25 Aug 2015 13:13:27 +0900 Subject: [PATCH 1/2] Fixing install script. --- install.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.py b/install.py index 320e7640..ad6cb2c6 100644 --- a/install.py +++ b/install.py @@ -18,8 +18,7 @@ def Main(): 'to run:\n\tgit submodule update --init --recursive\n\n' ) python_binary = sys.executable - args = ' '.join( sys.argv[1:] ) - subprocess.call( ' '.join( [ python_binary, build_file, args ] ) ) + subprocess.call( [ python_binary, build_file ] + sys.argv[1:] ) # Remove old YCM libs if present so that YCM can start. old_libs = ( From 36ad5510e5ee39ab3ed692b30d56580ad03aa443 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 25 Aug 2015 13:15:52 +0900 Subject: [PATCH 2/2] Make install.py be executable --- install.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 install.py diff --git a/install.py b/install.py old mode 100644 new mode 100755