Skip to content

Commit 0eb146d

Browse files
authored
Merge pull request #576 from brandsimon/sbr/minor_fixes
integration_tests: don't swallow error while creating ubuntu docker image
2 parents 38a3558 + 08e8dd7 commit 0eb146d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tss-esapi/src/structures/lists/digest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub struct DigestList {
1414
impl DigestList {
1515
pub const MAX_SIZE: usize = 8;
1616

17-
/// Creates a nnew empty DigestList
17+
/// Creates a new empty DigestList
1818
pub const fn new() -> Self {
1919
DigestList {
2020
digests: Vec::new(),

tss-esapi/tests/Dockerfile-ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ghcr.io/tpm2-software/ubuntu-20.04:latest AS base
22

33
FROM base AS rust-toolchain
44
# Install Rust toolchain
5-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
5+
RUN (curl https://sh.rustup.rs -sSf || exit 1) | bash -s -- -y
66
ENV PATH="/root/.cargo/bin:${PATH}"
77

88
FROM rust-toolchain AS tpm2-tss

0 commit comments

Comments
 (0)