Skip to content

Commit

Permalink
Fixing install script.
Browse files Browse the repository at this point in the history
  • Loading branch information
FooSoft committed Aug 25, 2015
1 parent b7e9871 commit 1348c0a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down

0 comments on commit 1348c0a

Please sign in to comment.