From 81aa495b51dab0ed68446fab43389d5532063d78 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Wed, 17 Jan 2024 14:46:19 -0500 Subject: [PATCH] Fix missing tags --- fips-check.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/fips-check.sh b/fips-check.sh index d7aa627e4..be6af96c2 100755 --- a/fips-check.sh +++ b/fips-check.sh @@ -305,15 +305,9 @@ fi pushd "$TEST_DIR" || exit 2 -# Start from FIPS 140-2 cert3389 -OLDDATE="Tue Jan 9 13:29:37 2018 -0800" -if ! $GIT clone --filter=blob:none --no-checkout --shallow-since="$OLDDATE" "$FIPS_REPO" fips; then +if ! $GIT clone --filter=blob:none --no-checkout "$FIPS_REPO" fips; then echo "fips-check: Couldn't check out FIPS repository." exit 1 -else - pushd fips || exit 2 - git checkout || exit 3 - popd || exit 2 fi checkout_files "${WOLFCRYPT_FILES[@]}" || exit 3