Open axiomcura opened 1 year ago
There is a work around this issue and it has been implemented #26.
The function find_project_dir()
which recursively finds the root project directory.
This means that get_project_dir()
must contain this function call or be deprecated.
The purpose of
get_project_dir()
is to return the root directory where the project is taken place, basically where the.cytosnake
file is located. However, there is a problem with this implementation here is the source code:The problem with this function is that it assumes that you're only at the project directory. Therefore if this code is executed elsewhere, it will raise and error that the
project directory is not found
.