File tree Expand file tree Collapse file tree
src/client/workspaceSymbols Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : python
22sudo : required
3+ dist : trusty
34
5+ addons :
6+ apt :
7+ packages :
8+ - libsecret-1-dev
49matrix :
510 include :
611 # # Use the built in venv for linux builds
7- # - os: linux
8- # sudo: required
9- # python: 2.7
12+ - os : linux
13+ sudo : required
14+ python : 2.7
1015 - os : linux
1116 sudo : required
1217 python : 3.5
1318 # # Use generic language for osx
14- # - os: osx
15- # language: generic
16- # env: PYTHON=2.7.10
17- # # Use generic language for osx
19+ - os : osx
20+ language : generic
21+ env : PYTHON=2.7.10
22+ # Use generic language for osx
1823 - os : osx
1924 language : generic
2025 env : PYTHON=3.5.1
@@ -28,8 +33,8 @@ before_install: |
2833 git submodule update --init --recursive
2934 git clone https://github.com/creationix/nvm.git ./.nvm
3035 source ./.nvm/nvm.sh
31- nvm install 6.6.0
32- nvm use 6.6.0
36+ nvm install 7.2.1
37+ nvm use 7.2.1
3338 npm config set python `which python`
3439 if [ "$TRAVIS_OS_NAME" == "osx" ]; then
3540 brew update;
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ export class Generator implements vscode.Disposable {
4242 if ( path . dirname ( outputFile ) === source . directory ) {
4343 outputFile = path . basename ( outputFile ) ;
4444 }
45- outputFile = outputFile . indexOf ( ' ' ) > 0 ? `"${ outputFile } "` : outputFile ;
4645 const outputDir = path . dirname ( outputFile ) ;
4746 if ( ! fs . existsSync ( outputDir ) ) {
4847 fs . mkdirSync ( outputDir ) ;
4948 }
49+ outputFile = outputFile . indexOf ( ' ' ) > 0 ? `"${ outputFile } "` : outputFile ;
5050 args . push ( `-o ${ outputFile } ` , '.' ) ;
5151 this . output . appendLine ( '-' . repeat ( 10 ) + 'Generating Tags' + '-' . repeat ( 10 ) ) ;
5252 this . output . appendLine ( `${ cmd } ${ args . join ( ' ' ) } ` ) ;
You can’t perform that action at this time.
0 commit comments