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
It seems that defining an engine path for dot engine does not work as expected. In fact the value is not used at all.
Looking into the code I think I found the origin of the problem located in the eng_dot function of the engines.r file and especially in the following lines:
As options$engine is always defined, options$engine.path has no chance to be used!
One way to correct code is simply swapping options$engine and options$engine.path or use the function get_engine_path(options$engine.path,options$engine) you use for other engines.
The text was updated successfully, but these errors were encountered:
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue by following the issue guide (https://yihui.org/issue/), and link to this old issue if necessary.
It seems that defining an engine path for dot engine does not work as expected. In fact the value is not used at all.
Looking into the code I think I found the origin of the problem located in the
eng_dot
function of theengines.r
file and especially in the following lines:As
options$engine
is always defined,options$engine.path
has no chance to be used!One way to correct code is simply swapping
options$engine
andoptions$engine.path
or use the functionget_engine_path(options$engine.path,options$engine)
you use for other engines.The text was updated successfully, but these errors were encountered: