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
creating .bzlrc in my workspace root has no effect on bzl:
.bzlrc
$ cat .bzlrc common --base_dir=/tmp/bzl serve --http_port=9999
$ bzl serve time="2020-05-27T17:53:03-07:00" level=info msg="Ready https://127.0.0.1:8080"
note that port 8080 is still used above, now if I move the .bzlrc file to my home dir everything works:
$ mv .bzlrc ~/ $ bzl serve time="2020-05-27T17:53:56-07:00" level=info msg="Ready https://127.0.0.1:9999"
According to https://build.bzl.io/bzl/docs/configuration-files the first scenario should have worked.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
creating
.bzlrc
in my workspace root has no effect on bzl:note that port 8080 is still used above, now if I move the
.bzlrc
file to my home dir everything works:According to https://build.bzl.io/bzl/docs/configuration-files the first scenario should have worked.
The text was updated successfully, but these errors were encountered: