Skip to content

Commit 2ed6a96

Browse files
committed
fix: properly return .pluginRoot when deploying plugins
1 parent db0962b commit 2ed6a96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/agoric-cli/lib/deploy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export { bootPlugin } from ${JSON.stringify(absPath)};
207207
// Return the bootstrap object for this plugin.
208208
console.info(`Loading plugin ${JSON.stringify(pluginFile)}`);
209209
return E.G(E(pluginManager).load(pluginName, pluginOpts))
210-
.bootstrap;
210+
.pluginRoot;
211211
} catch (e) {
212212
throw Error(
213213
`Cannot install unsafe plugin: ${(e && e.stack) || e}`,

0 commit comments

Comments
 (0)