From 932d82c1fcde0096d4aa51f1d421555d47094755 Mon Sep 17 00:00:00 2001 From: trev Date: Wed, 14 May 2025 05:11:19 -0400 Subject: [PATCH] fix: update buf deps --- .scripts/update.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.scripts/update.sh b/.scripts/update.sh index 9901bda..9844e15 100755 --- a/.scripts/update.sh +++ b/.scripts/update.sh @@ -11,6 +11,13 @@ if ! git diff --exit-code flake.lock; then git commit -m "build(nix): updated nix dependencies" fi +echo "updating protobuf deps" +buf dep update +if ! git diff --exit-code buf.lock; then + git add buf.lock + git commit -m "build(buf): updated buf dependencies" +fi + echo "updating client" cd "${git_root}/client" npm update --save && npm i