We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 38a3558 + 08e8dd7 commit 0eb146dCopy full SHA for 0eb146d
tss-esapi/src/structures/lists/digest.rs
@@ -14,7 +14,7 @@ pub struct DigestList {
14
impl DigestList {
15
pub const MAX_SIZE: usize = 8;
16
17
- /// Creates a nnew empty DigestList
+ /// Creates a new empty DigestList
18
pub const fn new() -> Self {
19
DigestList {
20
digests: Vec::new(),
tss-esapi/tests/Dockerfile-ubuntu
@@ -2,7 +2,7 @@ FROM ghcr.io/tpm2-software/ubuntu-20.04:latest AS base
2
3
FROM base AS rust-toolchain
4
# Install Rust toolchain
5
-RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
+RUN (curl https://sh.rustup.rs -sSf || exit 1) | bash -s -- -y
6
ENV PATH="/root/.cargo/bin:${PATH}"
7
8
FROM rust-toolchain AS tpm2-tss
0 commit comments