Docker

Docker

Made by DeepSource

Invalid case used for command/syntax DOK-SC1081

Bug risk
Critical

Bad Practice

If true
Then
  echo "hello"
Fi

Recommended

if true
then
  echo "hello"
fi

Shells are case sensitive and it expect command/syntax in its proper case. For example, shells do not accept If or IF in place of lowercase if.