typo fix in warning message (#585)

This commit is contained in:
Przemysław Dąbek 2018-10-05 10:19:23 +02:00 committed by Michael Boelen
parent c1f9417792
commit fd75c9fd0f
1 changed files with 1 additions and 1 deletions

View File

@ -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}"