-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opamroot redirect #22
Conversation
src/client/opamClient.ml
Outdated
let collision = | ||
(* UTF-8 <U+0020, U+1F4A5> (Collision emoji) *) | ||
if OpamConsole.color () then " \xF0\x9F\x92\xA5" else "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be defined in OpamConsole
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blimey, yes - see 725e63c!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(also verified that that means the running opam init
in conhost correctly doesn't display anything)
"\n\ | ||
%s\n\ | ||
\n\ | ||
Many parts of the OCaml ecosystem do not presently work correctly\n\ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe a less ocaml centric message ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see where you're coming from, but we do already have "opam and the OCaml ecosystem in general require various Unix tools" in the previous messages?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true
c317e22
to
6730dea
Compare
Used to indicate opam root redirection
It is needed for Cygwin installation, that doesn't handle paths with space. At init, detection and redirection are done, afterwards opam always load redirected opam root. Original root directory is stored in `OpamStateConfig.!r.original_root_dir`. Co-authored-by: David Allsopp <[email protected]>
No description provided.