Code QuizAdvanced

Following service logs with journalctl

Spot the flag mistake in a journalctl command meant to stream a service's live logs.

Codebash
#!/bin/bash
# Restart nginx and then stream its live logs
sudo systemctl restart nginx.service

# Follow the newest log entries for the unit as they arrive
journalctl -u nginx.service -follow

What is the bug in this script?