-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
x.py setup
creates config.toml in root directory, even if one is running in a different directory
#78509
Comments
@pnkfelix are you using different |
Or did you intend to run x.py from the current directory but use the top-level config.toml? |
Normally |
x.py setup: Create config.toml in the current directory, not the top-level directory See rust-lang#78509 for discussion. r? @pnkfelix cc @cuviper @Mark-Simulacrum
x.py setup: Create config.toml in the current directory, not the top-level directory See rust-lang#78509 for discussion. r? @pnkfelix cc @cuviper @Mark-Simulacrum
x.py setup: Create config.toml in the current directory, not the top-level directory See rust-lang#78509 for discussion. r? @pnkfelix cc @cuviper @Mark-Simulacrum
This was fixed in #78550. |
If you run
x.py build
in a directory with no config.toml, it suggests you runx.py setup
first.I did that.
Then I ran
x.py build
again. And it made the same suggestion.The suggestion wasn't wrong, since there was no config.toml in my current directory, even after running
x.py setup
; the problem was that runningx.py setup
is generating theconfig.toml
in the source root, rather than in the current directory.The text was updated successfully, but these errors were encountered: