From 87296ce379deb44c3d05760423b1856dc128d2aa Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Fri, 23 Feb 2024 09:06:03 -0700 Subject: [PATCH] deploy: use nom for watching output --- bin/deploy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/deploy b/bin/deploy index b5e8673..89e61a7 100755 --- a/bin/deploy +++ b/bin/deploy @@ -27,7 +27,7 @@ rebuild() { return 0 fi - nixos-rebuild ${TRACE} --flake .#${1} --build-host root@${host} --target-host root@${host} switch + nixos-rebuild ${TRACE} --flake .#${1} --build-host root@${host} --target-host root@${host} switch |& nom return $? } @@ -120,7 +120,7 @@ if [ "$1" = "install" ]; then fi if [ "$1" = "local" ]; then - sudo nixos-rebuild ${TRACE} --flake .#$(uname -n) switch + sudo nixos-rebuild ${TRACE} --flake .#$(uname -n) switch |& nom exit $? fi