File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -277,7 +277,10 @@ function defineTasks(options) {
277
277
const nodeStream = gulp . src ( [ nodePath ] , { base : path . dirname ( nodePath ) } ) ;
278
278
279
279
const resourcesBase = path . join ( root , 'resources/' + qualifier ) ;
280
- const binStream = gulp . src ( [ path . join ( resourcesBase , '**/*.' + ( process . platform === 'win32' ? 'cmd' : 'sh' ) ) ] , { base : resourcesBase } )
280
+ const binStream = gulp . src ( [
281
+ path . join ( resourcesBase , 'bin/code.' + ( process . platform === 'win32' ? 'cmd' : 'sh' ) ) ,
282
+ path . join ( resourcesBase , 'server.' + ( process . platform === 'win32' ? 'cmd' : 'sh' ) )
283
+ ] , { base : resourcesBase } )
281
284
. pipe ( util . setExecutableBit ( [ '**/*.sh' ] ) )
282
285
. pipe ( rename ( path => {
283
286
if ( path . basename === 'code' && path . extname === '.sh' ) {
You can’t perform that action at this time.
0 commit comments