Exit early on genrule command parsing failure

cmd may be empty if android.Expand fails, and continuing results
in a panic.  Return immediately.

Test: m -j checkbuild
Change-Id: Ibf4d57ce048db9f7f16ce118ed9e9ecea5a6551c
diff --git a/genrule/genrule.go b/genrule/genrule.go
index ee4c503..cb741b3 100644
--- a/genrule/genrule.go
+++ b/genrule/genrule.go
@@ -198,6 +198,7 @@
 
 	if err != nil {
 		ctx.PropertyErrorf("cmd", "%s", err.Error())
+		return
 	}
 
 	ruleParams := blueprint.RuleParams{