Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions util/cmd/check_tfvars/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (
"flag"
"fmt"
"log"
"maps"
"os"
"path/filepath"
"strings"
Expand Down Expand Up @@ -75,9 +76,7 @@ func main() {
if err != nil {
log.Fatalf("failed to load %s: %v", fullPath, err)
}
for k, v := range attrs {
allAttrs[k] = v
}
maps.Copy(allAttrs, attrs)
}

// 2. Validate all gathered attributes against schemas
Expand Down
5 changes: 4 additions & 1 deletion workers/webhook/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ replace github.com/GoogleChrome/webstatus.dev/lib => ../../lib

replace github.com/GoogleChrome/webstatus.dev/lib/gen => ../../lib/gen

require github.com/GoogleChrome/webstatus.dev/lib v0.0.0-00010101000000-000000000000
require (
github.com/GoogleChrome/webstatus.dev/lib v0.0.0-00010101000000-000000000000
github.com/google/go-cmp v0.7.0
)

require (
cel.dev/expr v0.25.1 // indirect
Expand Down
Loading