File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,3 @@ rm -rf docs-cli
55npm install --ignore-scripts
66
77grunt docs-jekyll
8- if [ -d docs-cli ]; then
9- cd docs-cli
10- mv index.md start.md
11- fi
Original file line number Diff line number Diff line change 1+ < script type ="text/javascript ">
2+ window . location = 'start.html' ;
3+ </ script >
File renamed without changes.
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ export class HelpService implements IHelpService {
195195 await this . throwMissingCommandError ( commandData ) ;
196196 }
197197
198- return ( commandName && commandName . replace ( / \| / g, "-" ) ) || "index " ;
198+ return ( commandName && commandName . replace ( / \| / g, "-" ) ) || "start " ;
199199 }
200200
201201 private async throwMissingCommandError ( commandData : ICommandData ) : Promise < void > {
Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ and another one`
422422 it ( "shows index help when command is not specified" , async ( ) => {
423423 const injector = createTestInjector ( ) ;
424424 injector . register ( "fs" , {
425- enumerateFilesInDirectorySync : ( path : string ) => [ "index .md" ] ,
425+ enumerateFilesInDirectorySync : ( path : string ) => [ "start .md" ] ,
426426 readText : ( ) => "index data is read"
427427 } ) ;
428428
You can’t perform that action at this time.
0 commit comments