diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-19 13:10:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-19 13:10:12 +0200 |
commit | a4df7bbfb95211db4eda3e5bf6b361dbebda40e6 (patch) | |
tree | 294c725f34c5926f1d4ea0802e8a0df39d876172 | |
parent | pkgs/fupdate: Improve error reporting (diff) | |
download | nixos-config-a4df7bbfb95211db4eda3e5bf6b361dbebda40e6.zip |
update.sh: Show the arguments, which are propagated to the scripts prime
-rwxr-xr-x | update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.sh b/update.sh index 3a8c7cb1..f864935d 100755 --- a/update.sh +++ b/update.sh @@ -3,7 +3,7 @@ __update_sh_run() { __update_sh_command="$1" shift 1 - printf "\033[35;1m> \033[0m\033[35;1m%s\033[0m\n" "Running '$(basename "$__update_sh_command")' .." + printf "\033[35;1m> \033[0m\033[35;1m%s\033[0m\n" "Running '$(basename "$__update_sh_command") $*' .." "$__update_sh_command" "$@" |