Shell

Shell

Made by DeepSource

Missing fi statement here SH-1047

Bug risk
Critical

Expected fi matching previously mentioned if statement.

Problematic code:

if true
then
  echo "True"
done

Preferred code:

if true
then
  echo "True"
fi