Skip to content

Commit

Permalink
chore : code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rmnegatives committed Sep 25, 2017
1 parent e7cd04b commit f9c75be
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vscode_extensions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env node

const fs = require( 'fs' );
const sys = require( 'util' );
const exec = require( 'child_process' ).exec;
const argv = require( 'yargs' )
.usage( 'Usage: $0 <command> [options]' )
Expand Down Expand Up @@ -60,8 +59,8 @@ if ( argv.f & argv.i ) {

extensions.forEach( ( val, i ) => {
const command = `${vsCodeExecute} ${val}`;
console.log( `Installing extension:${val}` );
//exec( command, execResult );
console.log( `Installing extension: ${val}` );
// exec( command, execResult );
} );
} );

Expand Down

0 comments on commit f9c75be

Please sign in to comment.