From 166c05e192edc8f7df290401f8e5bae844f1f301 Mon Sep 17 00:00:00 2001 From: xenia Date: Sat, 8 Jun 2024 22:38:33 +0200 Subject: [PATCH] Script to update all templates to latest version --- update-all.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 update-all.sh diff --git a/update-all.sh b/update-all.sh new file mode 100644 index 0000000..e7738fc --- /dev/null +++ b/update-all.sh @@ -0,0 +1,10 @@ +set -e + +for d in ./*/ ; do + echo "== updating $d == " + pushd "$d" + + nix flake update + + popd +done