#compdef fw

# no fw in $PATH
if ! command -v fw > /dev/null 2>&1; then
    _message "fw not installed"

else
    local ret=1
    _arguments -C '1: :(projectile sync foreach add update)' && ret=0

fi
