File tree 3 files changed +2
-5
lines changed 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
( ( ) => {
12
12
13
- const DEFAULT_VERSION = '0.9 .0' ; // require('moment')().format('YYYYMMDD');
13
+ const DEFAULT_VERSION = '0.11 .0' ; // require('moment')().format('YYYYMMDD');
14
14
15
15
const path = require ( 'path' ) ;
16
16
const shell = require ( 'shelljs' ) ;
Original file line number Diff line number Diff line change 39
39
if ( shell . exec ( `git -C ${ repository } rev-parse --abbrev-ref HEAD` ) . code !== 0 ) {
40
40
shell . exit ( 1 ) ;
41
41
}
42
- if ( shell . exec ( `git -C ${ repository } rev-parse --short HEAD` ) . code !== 0 ) {
43
- shell . exit ( 1 ) ;
44
- }
45
42
46
43
const pluginExec = shell . which ( 'grpc_tools_node_protoc_plugin' ) ;
47
44
if ( ! pluginExec || pluginExec . code !== 0 ) {
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ export class BoardsServiceImpl implements BoardsService {
220
220
resolve ( resp ) ;
221
221
} ) ) ;
222
222
223
- const requiredTools = resp . getRequiredToolsList ( ) . map ( t => < Tool > {
223
+ const requiredTools = resp . getToolsdependenciesList ( ) . map ( t => < Tool > {
224
224
name : t . getName ( ) ,
225
225
packager : t . getPackager ( ) ,
226
226
version : t . getVersion ( )
You can’t perform that action at this time.
0 commit comments