From fd75c9fd0f08d2ae99d9d8368c426fb19d7057ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20D=C4=85bek?= Date: Fri, 5 Oct 2018 10:19:23 +0200 Subject: [PATCH] typo fix in warning message (#585) --- include/helper_audit_dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/helper_audit_dockerfile b/include/helper_audit_dockerfile index 1185fb2e..49b6a335 100644 --- a/include/helper_audit_dockerfile +++ b/include/helper_audit_dockerfile @@ -136,7 +136,7 @@ InsertSection "Basics" FIND=$(grep "^USER" ${AUDIT_FILE} | cut -d' ' -f2 ) if [ "${FIND}" = "" ]; then - ReportWarning "dockerfile" "No user declared in Dockerlfile. Container will execute command as root" + ReportWarning "dockerfile" "No user declared in Dockerfile. Container will execute command as root" else USER=$(echo ${FIND}) Display --indent 2 --text "User" --result "${USER}"