diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 18:19:52 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 18:19:52 +0200 |
commit | 1f3a4fb2c0e9f9958fc6482a08eb5a3d44ab7aaa (patch) | |
tree | be2b73cba450d22b9ca17662f08fc801f5cc557d /pkgs | |
parent | fix(pkgs/update.sh): Ensure that the `nix flake update` check works (diff) | |
download | nixos-config-1f3a4fb2c0e9f9958fc6482a08eb5a3d44ab7aaa.tar.gz nixos-config-1f3a4fb2c0e9f9958fc6482a08eb5a3d44ab7aaa.zip |
feat(pkgs/update.sh): Notify the user about the run update scripts
Diffstat (limited to 'pkgs')
-rwxr-xr-x | pkgs/update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/update.sh b/pkgs/update.sh index 73132a0f..0a8c4cfc 100755 --- a/pkgs/update.sh +++ b/pkgs/update.sh @@ -28,7 +28,7 @@ fd . --type directory --max-depth 1 | while read -r shard; do cd "$package" || die "(BUG): Package '$package' does not exist?" if [ -x update.sh ]; then - printf "\033[34;1m> \033[0m\033[34;1m%s\033[0m\n" "Running '${shard}${package}update.sh' .." + printf " \033[34;1m> \033[0m\033[34;1m%s\033[0m\n" "Running '${shard}${package}update.sh' .." [ -f flake.nix ] && nix flake update |