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
Steps to Reproduce:
I don't know how to reproduce it, because it's OK before this error.
After I debug dev container extension, I found the following lines are the problem:
...t.map((o) => Nt.workspace.findFiles( new Nt.RelativePattern( o.with({ path: sd.posix.join(o.path, '.devcontainer') }), '{devcontainer.json,*/devcontainer.json}' ) ) ),
When I changed it to
...t.map((o) => Nt.workspace.findFiles( new Nt.RelativePattern( o, '.devcontainer/devcontainer.json' ) ) ),
It's working then.
Anyway, the error message prompted is misleading, since the real problem is the extension cannot find the devcontainer.json.
The text was updated successfully, but these errors were encountered:
chrmarti
No branches or pull requests
Steps to Reproduce:
I don't know how to reproduce it, because it's OK before this error.
After I debug dev container extension, I found the following lines are the problem:
When I changed it to
It's working then.
Anyway, the error message prompted is misleading, since the real problem is the extension cannot find the devcontainer.json.
The text was updated successfully, but these errors were encountered: