-
Hi Here is my Cross.toml
I'm trying
It emits empty string. I also tried vergen_git2 and |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Im guessing theres some output in stderr? This is probably a file ownership problem. If it is, see #1473 (reply in thread) |
Beta Was this translation helpful? Give feedback.
-
Looks like a found a problem. stderr was real problem was what my repo is not equal to workspace root.
when I run Is there any way to set mount point as |
Beta Was this translation helpful? Give feedback.
Looks like a found a problem.
stderr was
fatal: not a git repository (or any parent up to mount point /home/sc/t/bur)
real problem was what my repo is not equal to workspace root.
I have something like
when I run
cross build
, my pwd isgit_repo/my_rust_project
, so I have mounted onlymy_rust_project
, and./../.git
is not accessible.Is there any way to set mount point as
./../
, or should I reorganize my repository?