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
The example build.rs file in create-disk-image.md uses the env!() macro to access CARGO_BIN_FILE_KERNEL_kernel when it should use std::env::var_os.
build.rs
create-disk-image.md
env!()
CARGO_BIN_FILE_KERNEL_kernel
std::env::var_os
The text was updated successfully, but these errors were encountered:
env::var_os
env!
Thanks a lot for reporting!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The example
build.rs
file increate-disk-image.md
uses theenv!()
macro to accessCARGO_BIN_FILE_KERNEL_kernel
when it should usestd::env::var_os
.The text was updated successfully, but these errors were encountered: