elif [[ "$firstParam" == "update"]]; then
should be
elif [[ "$firstParam" == "update" ]]; then
with a space between "update" and ]]
elif [[ "$firstParam" == "update"]]; then
should be
elif [[ "$firstParam" == "update" ]]; then
with a space between "update" and ]]