Skip to content
Snippets Groups Projects
Commit fc180f61 authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Remove hard coded path from Python commands

parent a92843d2
No related branches found
No related tags found
1 merge request!15Fix adolc and path
......@@ -130,7 +130,8 @@ int main (int argc, char *argv[]) try
//feenableexcept(FE_INVALID);
Python::runStream()
<< std::endl << "import sys"
<< std::endl << "sys.path.append('/home/sander/dune/dune-gfe/problems/')"
<< std::endl << "import os"
<< std::endl << "sys.path.append(os.getcwd() + '/../../problems/')"
<< std::endl;
using namespace TypeTree::Indices;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment