Skip to content
Snippets Groups Projects

Features 2954

Merged alexey.stratulat requested to merge features-2954 into master
7 unresolved threads
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -5,8 +5,9 @@
int dap_chain_plugins_init(dap_config_t *a_config){
if(dap_config_get_item_bool_default(a_config, "plugins", "py_load", false)){
const char *l_defaule_path_plugins = dap_strjoin(NULL, "/opt/", dap_get_appname(), "/var/plugins/", NULL);
const char *l_plugins_root_path = dap_config_get_item_str_default(a_config, "plugins", "py_path",
"/opt/cellframe-node/var/plugins/");
l_defaule_path_plugins);
s_plugins_root_path = dap_strjoin(NULL, l_plugins_root_path, "/", NULL);
log_it(L_INFO, "Start initialize python plugins. Path plugins %s", s_plugins_root_path);
if (!dap_dir_test(s_plugins_root_path)){
Loading