Forgot to close while loops

This commit is contained in:
iadgovuser29 2024-07-12 11:46:30 -04:00
parent 48203a84a6
commit 63f4de2868
3 changed files with 6 additions and 5 deletions

View File

@ -34,7 +34,7 @@ while [[ $# -gt 0 ]]; do
break
;;
esac
done
# Ensure file structure is there
mkdir -p $HIRS_CI_EFI_PATH_PLATFORM
mkdir -p $HIRS_CI_EFI_PATH_RIM

View File

@ -8,7 +8,7 @@
#########################################################################################
# Load env variables
. ./.ci/docker/.env
. /hirs/.ci/docker/.env
profile=laptop
test=default
@ -52,7 +52,7 @@ while [[ $# -gt 0 ]]; do
break
;;
esac
done
# Profile selections
profileDir="$HIRS_CI_REPO_ROOT/.ci/system-tests/profiles/$profile"
testDir="$profileDir/$test"
@ -107,3 +107,4 @@ pushd $pcDir > /dev/null
done
fi
popd > /dev/null

View File

@ -5,7 +5,7 @@
#########################################################################################
# Load env variables
. ./.ci/docker/.env
. /hirs/.ci/docker/.env
profile=laptop
test=default
@ -52,7 +52,7 @@ while [[ $# -gt 0 ]]; do
break
;;
esac
done
# Profile selections
profileDir="$HIRS_CI_REPO_ROOT/.ci/system-tests/profiles/$profile"
defaultDir="$profileDir/default"