File tree Expand file tree Collapse file tree
global-modules-path-2.3.1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ module Cli = struct
300300 in
301301 Arg. (value & opt (some type_conv) None & info [ " type" ])
302302
303- let time_limit = Arg. (value & opt float 300 .0 & info [ " time-limit" ])
303+ let time_limit = Arg. (value & opt float 600 .0 & info [ " time-limit" ])
304304
305305 let jobs = Arg. (value & opt int 6 & info [ " jobs" ])
306306
Original file line number Diff line number Diff line change 11const esl = require ( "esl_symbolic" ) ;
22const gitlog = require ( 'gitlog' ) . default ;
33try {
4- gitlog ( { repo : '/app ' , number : esl . string ( "number" ) } ) ;
4+ gitlog ( { repo : './ ' , number : esl . string ( "number" ) } ) ;
55} catch ( err ) {
66 console . log ( 'ignore error' ) ;
77}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const esl = require("esl_symbolic");
33const gitlog = require ( 'gitlogplus' ) ;
44const options =
55{
6- repo : __dirname + '/git' ,
6+ repo : __dirname ,
77 number : esl . string ( "number" )
88} ;
99let commits = gitlog ( options ) ;
Original file line number Diff line number Diff line change 11var esl = require ( "esl_symbolic" ) ;
22var root = require ( "global-modules-path" ) ;
3- root . getPath ( esl . string ( "module" ) , esl . string ( "executable" ) ) ;
3+ var executable = esl . string ( "executable" ) ;
4+ esl . assume ( executable != "" ) ;
5+ root . getPath ( esl . string ( "module" ) , executable ) ;
You can’t perform that action at this time.
0 commit comments