From 69ba1ee7bb70a8adda7c112096c3f07bd788bab6 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 7 May 2024 19:02:27 +0200 Subject: [PATCH] Add fmt to dependency update script --- scripts/update_dependencies.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/update_dependencies.sh b/scripts/update_dependencies.sh index 57dd62659..3a8afe370 100755 --- a/scripts/update_dependencies.sh +++ b/scripts/update_dependencies.sh @@ -30,6 +30,9 @@ PROTOZERO_TAG=v1.6.2 VTZERO_PATH="mapbox/vtzero" VTZERO_TAG=v1.0.1 +FMT_PATH="fmtlib/fmt" +FMT_TAG=v9.1.0 + function update_subtree () { name=${1^^} path=$(tmpvar=${name}_PATH && echo ${!tmpvar}) @@ -53,6 +56,6 @@ function update_subtree () { } ## Update dependencies -for dep in osmium variant sol rapidjson microtar protozero vtzero ; do +for dep in osmium variant sol rapidjson microtar protozero vtzero fmt; do update_subtree $dep done