about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/update_pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'sys/nixpkgs/pkgs/update_pkgs')
-rwxr-xr-xsys/nixpkgs/pkgs/update_pkgs13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/nixpkgs/pkgs/update_pkgs b/sys/nixpkgs/pkgs/update_pkgs
index d6684f06..8392fb1c 100755
--- a/sys/nixpkgs/pkgs/update_pkgs
+++ b/sys/nixpkgs/pkgs/update_pkgs
@@ -12,16 +12,13 @@ fd . --type directory --max-depth 1 | while read -r dir; do
     cd "$dir" || die "Dir '$dir' does not exist"
 
     if [ -f update.sh ]; then
-        printf "\033[34;1m> \033[0m%s" "\033[32;1mRunning '${dir}update.sh'\033[0m";
+        printf "\033[34;1m> \033[0m\033[34;1m%s\033[0m\n" "Running '${dir}update.sh'";
 
-        if [ -f flake.nix ]; then
-            nix flake update
+        [ -f flake.nix ] && nix flake update
 
-            direnv allow
-            eval "$(direnv export bash)"
-        fi
-
-        ./update.sh
+        direnv allow
+        eval "$(direnv export bash 2>/dev/null)"
+        ./update.sh "$@"
     fi
     cd - > /dev/null || die "Bug: Last dir does not exist"
 done