You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PluginsManagerLauncher program attempts to modify the config.bbj file to include the pluginsHome folder in the PREFIX.
However, the comparison on line 221 checks to see if directory$ = pluginsHome$ is always failing because the directory$ variable includes a trailing slash which is not present in the pluginsHome$ variable.
Since most prefix entries typically do include a trailing slash, the program incorrectly reports that the prefix needs to be modified to include the pluginsHome$ folder.
[3]/u/basis/bbj/plugins/PluginManagerLauncher.bbj>/221,223
if directory$ = pluginsHome$ then
methodret Boolean.TRUE
endif
[3]/u/basis/bbj/plugins/PluginManagerLauncher.bbj>?directory$
/u/basis/bbj/plugins/
[3]/u/basis/bbj/plugins/PluginManagerLauncher.bbj>print pluginsHome$
/u/basis/bbj/plugins
The text was updated successfully, but these errors were encountered:
The PluginsManagerLauncher program attempts to modify the config.bbj file to include the pluginsHome folder in the PREFIX.
However, the comparison on line 221 checks to see if directory$ = pluginsHome$ is always failing because the directory$ variable includes a trailing slash which is not present in the pluginsHome$ variable.
Since most prefix entries typically do include a trailing slash, the program incorrectly reports that the prefix needs to be modified to include the pluginsHome$ folder.
The text was updated successfully, but these errors were encountered: