dev-templates/update.sh
2022-07-29 00:02:49 +02:00

10 lines
203 B
Bash
Executable file

#!/bin/bash
for dir in `ls -d */`; do # Iterate through all the templates
(
cd $dir
nix flake update # Update flake.lock
direnv reload # Make sure things work after the update
)
done