We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
opam env --switch=SWITCHDIR
I'll send PR.
After creating a local Opam switch in a Windows PowerShell 5 directory with a space, like:
mkdir "Person 1" cd "Person 1" opam dkml init
the switch suggestion shows:
# Run (& opam env --switch=C:\Person 1) -split '\r?\n' | ForEach-Object { Invoke-Expression $_ } to update the current shell environment
That needs to be:
(& opam env --switch="C:\Person 1") -split '\r?\n' | ...
The text was updated successfully, but these errors were encountered:
'opam env' for directories with spaces ocaml#5204
24031c9
'opam env' for directories with spaces
fc9f5fa
Issue ocaml#5204
dc3d3c5
752a3e7
034c09a
Successfully merging a pull request may close this issue.
I'll send PR.
After creating a local Opam switch in a Windows PowerShell 5 directory with a space, like:
the switch suggestion shows:
That needs to be:
The text was updated successfully, but these errors were encountered: