Skip to content

Commit 4a858c0

Browse files
committed
Fix failure to render presentation
1 parent 84d8c5f commit 4a858c0

File tree

1 file changed

+4
-1
lines changed
  • lib/node_modules/@stdlib/repl/presentation/bin

1 file changed

+4
-1
lines changed

lib/node_modules/@stdlib/repl/presentation/bin/cli

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function main() {
4242
var opts1;
4343
var opts2;
4444
var repl;
45-
var pres; // eslint-disable-line no-unused-vars
45+
var pres;
4646
var args;
4747
var cli;
4848

@@ -125,6 +125,9 @@ function main() {
125125

126126
// Create a new REPL presentation:
127127
pres = new Presentation( repl, opts2 );
128+
129+
// Render the first slide:
130+
pres.show();
128131
}
129132

130133
main();

0 commit comments

Comments
 (0)