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
Improve the output of our miden-xxx --version output to account for non-release builds, such as we might deploy on devnet instances.
miden-xxx --version
Use git describe --tags --dirty which will give us the format
git describe --tags --dirty
<version-tag>-<commit-count>-<commit SHA>-dirty
where everything but <version-tag> is only present if applicable.
<version-tag>
This will also help us debug operator node's as we can now know if they're on a non-release build.
The text was updated successfully, but these errors were encountered:
--version
Closed by #495.
Sorry, something went wrong.
Mirko-von-Leipzig
No branches or pull requests
Improve the output of our
miden-xxx --version
output to account for non-release builds, such as we might deploy on devnet instances.Use
git describe --tags --dirty
which will give us the formatwhere everything but
<version-tag>
is only present if applicable.This will also help us debug operator node's as we can now know if they're on a non-release build.
The text was updated successfully, but these errors were encountered: