-
Notifications
You must be signed in to change notification settings - Fork 5
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
Doesn't work on macOS #42
Comments
It looks like |
Looks like BSD cp has similar behaviour if the source ends with
$ tree
.
├── test1
│ ├── file1
│ └── file2
└── test2
$ cp -a test1/ test2
$ tree
.
├── test1
│ ├── file1
│ └── file2
└── test2
├── file1
└── file2 GNU cp, though, treats |
A workaround is to install
Then add the
Then |
I'm getting I guess the same error, with a little more output:
On macOS without GNU coreutils. Any way we can make this work without the coreutils workaround? I would love to use opam-bin but can't if it can't create switches or if I need duplicate copies of Unix tools (which also make a Windows port more difficult). |
Executing
opam switch create . ocaml-base-compiler.4.10.1
on macOS 10.14.6 fails with:BSD tar doesn't have options like
group
,owner
, etc. That seems to be the reason.Update: opam-bin seems to use other options that don't exist on BSD, like
-T
fromcp
. These options aren't part of the POSIX standard.The text was updated successfully, but these errors were encountered: