Shell

Shell

Made by DeepSource

Missing done statement SH-1061

Bug risk
Critical

Detected a do statement without a corresponding done statement. Please check that the done exists, and that it correctly matches the indicated do.

Problematic code:

yes() {
  while echo "y"
  do
    true
}

Preferred code:

yes() {
  while echo "y"
  do
    true
  done
}