diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-11-15 23:25:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 10:25:52 +1100 |
commit | cd9193f126c229f3457ada1cf9a05897fdebb77d (patch) | |
tree | 070342089d3a40300f49ba254afd43994ac2a377 /cli/module_loader.rs | |
parent | 243d3ba755265dc2cdc5cd0aaffdf9da57d7a931 (diff) |
fix(cli): short-circuit in prepare_module_load() (#12604)
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r-- | cli/module_loader.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs index e66e4e4fc..2d37e07a3 100644 --- a/cli/module_loader.rs +++ b/cli/module_loader.rs @@ -116,6 +116,7 @@ impl ModuleLoader for CliModuleLoader { lib, root_permissions, dynamic_permissions, + false, ) .await } |