deploy: use nom for watching output.. but use portable error redierct

This commit is contained in:
Aaron Bieber 2024-02-24 06:33:14 -07:00
parent 00496a08f6
commit 6f360711c5
No known key found for this signature in database

View File

@ -27,7 +27,7 @@ rebuild() {
return 0
fi
nixos-rebuild ${TRACE} --flake .#${1} --build-host root@${host} --target-host root@${host} switch |& nom
nixos-rebuild ${TRACE} --flake .#${1} --build-host root@${host} --target-host root@${host} switch 2>&1 | nom
return $?
}
@ -120,7 +120,7 @@ if [ "$1" = "install" ]; then
fi
if [ "$1" = "local" ]; then
sudo nixos-rebuild ${TRACE} --flake .#$(uname -n) switch |& nom
sudo nixos-rebuild ${TRACE} --flake .#$(uname -n) switch 2>&1 | nom
exit $?
fi