We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096ee8e commit e8d167fCopy full SHA for e8d167f
packages/npm-packages/ruby-wasm-wasi/src/vm.ts
@@ -125,7 +125,11 @@ export class RubyVM {
125
this.guest.rubyInit();
126
this.guest.rubySysinit(c_args);
127
this.guest.rubyOptions(c_args);
128
- this.eval(`require "/bundle/setup"`);
+ try {
129
+ this.eval(`require "/bundle/setup"`);
130
+ } catch (e) {
131
+ console.warn("Failed to load /bundle/setup", e);
132
+ }
133
}
134
135
/**
0 commit comments