about summary refs log tree commit diff
path: root/ops/besadii/main.go2
diff options
context:
space:
mode:
Diffstat (limited to 'ops/besadii/main.go2')
-rw-r--r--ops/besadii/main.go24
1 files changed, 2 insertions, 2 deletions
diff --git a/ops/besadii/main.go2 b/ops/besadii/main.go2
index 8fada435ee..dac711ce28 100644
--- a/ops/besadii/main.go2
+++ b/ops/besadii/main.go2
@@ -154,12 +154,12 @@ func refUpdatedFromFlags() (*refUpdated, error) {
 		return nil, fmt.Errorf("'ref-updated' hook invoked without required arguments")
 	}
 
-	if update.project != "depot" {
+	if update.project != "depot" || metaRegexp.MatchString(update.ref) {
 		// this is not an error, but also not something we handle.
 		return nil, nil
 	}
 
-	if branchRegexp.MatchString(update.ref) || metaRegexp.MatchString(update.ref) {
+	if branchRegexp.MatchString(update.ref) {
 		// these refs don't need special handling, just move on
 		return &update, nil
 	}