Skip to content

integration_tests: don't swallow error while creating ubuntu docker image #576

New issue

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tss-esapi/src/structures/lists/digest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub struct DigestList {
impl DigestList {
pub const MAX_SIZE: usize = 8;

/// Creates a nnew empty DigestList
/// Creates a new empty DigestList
pub const fn new() -> Self {
DigestList {
digests: Vec::new(),
Expand Down
2 changes: 1 addition & 1 deletion tss-esapi/tests/Dockerfile-ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ghcr.io/tpm2-software/ubuntu-20.04:latest AS base

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

FROM rust-toolchain AS tpm2-tss
Expand Down