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
Thus in my application there is no default target directory anymore. If I create it, everything works.
If "target" does not exist locally, compilation fails. This is because of create_dir("target/machine") which assumes a local "target" directory exists.
There is "std::fs::create_dir_all" which should fix this.
The text was updated successfully, but these errors were encountered:
I've got a ~/.cargo/config where I have set up a global target-dir:
Thus in my application there is no default target directory anymore. If I create it, everything works.
If "target" does not exist locally, compilation fails. This is because of
create_dir("target/machine")
which assumes a local "target" directory exists.There is "std::fs::create_dir_all" which should fix this.
The text was updated successfully, but these errors were encountered: