-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
Error: Cannot copy '../semver/bin/semver.js' to a subdirectory of itself #813
Comments
Same for me. Surprisingly it does also reproduce in GH Actions steps https://github.com/san650/ember-cli-page-object/runs/4800467424?check_suite_focus=true#step:5:30 🤔 using the latest [email protected] |
Seeing this but with handlebars. Using yarn 1. Can see here: nickschot/ember-gesture-modifiers#188 |
Looks like maybe it needs a change like await fs.copy(source, destination); to await fs.copy(source, destination, {dereference: true}); |
FYI, For me downgrading to the [email protected] worked around this issue. |
We're also seeing it in our CI system. |
@knownasilya I had the same problem here, trying to run Also, the buggy behavior is independent from running with yarn 1 or npm |
Revert back to ^1.0.0 of ember-try, due to: - issue: ember-cli/ember-try#813 - pr: ember-cli/ember-try#821
There is no `clobber` option. `overwrite` appears to do what was intended. Fixes ember-cli#813
Fixes error: [test:ember-compatibility] Error: Cannot copy '../../../browserslist/cli.js' to a subdirectory of itself, '../../../browserslist/cli.js'. Likely related issue: ember-cli/ember-try#813
Fixes error: [test:ember-compatibility] Error: Cannot copy '../../../browserslist/cli.js' to a subdirectory of itself, '../../../browserslist/cli.js'. Likely related issue: ember-cli/ember-try#813
I run into the same issue. For me it was solved as well by deleting |
I imagine this would be fixed if we ever went through with #598 🤔 |
Ah so I guess the next big thing would be to get a release out 🤔 quite a few fixes ready to go. I'll start a conversation in #dev-ember-cli about this 👍 |
I'm getting this error as well.. but for an |
If you run
test:ember-compatibility
more than once, it fails with the following:Steps to reproduce:
I had a co-worker try the same steps and he got the same error.
The text was updated successfully, but these errors were encountered: