Skip to content

Commit

Permalink
add option to disable bootstrapping from Node
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jan 19, 2024
1 parent 18dd465 commit b68bbae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ function print(result) {

// -----------------------------------------------------------------------------
function bootstrap(interpreter) {
if (options.bootstrap === 'none') {
return Promise.resolve();
}
const file = options.bootstrap ? options.bootstrap : './dist/std.xcb';
function read(name) {
var path;
Expand Down

0 comments on commit b68bbae

Please sign in to comment.