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
We don't have the right path when calling clean_build or uninstall. This is because it uses INST_ROOT/ISYS_ROOT, which are not correct from there.
clean_build removes ~/coriolis-2.x/src/../build, should be ~/coriolis-2.x/Linux.x86_64/Release.Shared/build/
uninstall removes ~/coriolis-2.x/src/Linux.x86_64, should be ~/coriolis-2.x/Linux.x86_64/Release.Shared/install/
It cannot be simply remedied by changing how we compute the path in bootstrap/coriolisEnv.py, as it needs to remain correct to setup the environment when called from the installed coriolis. So for now it's a manual cleanup
The text was updated successfully, but these errors were encountered:
We don't have the right path when calling clean_build or uninstall. This is because it uses INST_ROOT/ISYS_ROOT, which are not correct from there.
~/coriolis-2.x/src/../build
, should be~/coriolis-2.x/Linux.x86_64/Release.Shared/build/
~/coriolis-2.x/src/Linux.x86_64
, should be~/coriolis-2.x/Linux.x86_64/Release.Shared/install/
It cannot be simply remedied by changing how we compute the path in bootstrap/coriolisEnv.py, as it needs to remain correct to setup the environment when called from the installed coriolis. So for now it's a manual cleanup
The text was updated successfully, but these errors were encountered: