From 66bf5e3b6f9f182afce820d7653cc8bc5486cb69 Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 18 Oct 2023 21:14:23 +0200 Subject: [PATCH] build(update.sh): Include the language_macros dir in the update --- update.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/update.sh b/update.sh index bad0cb1..3f58c76 100755 --- a/update.sh +++ b/update.sh @@ -3,5 +3,11 @@ cargo update && cargo upgrade +cd ./language_macros || (echo "No language_macros directory" && exit 1) + +cargo update && cargo upgrade + +cd .. +git add Cargo.lock Cargo.toml flake.lock ./language_macros/Cargo.toml # vim: ft=sh