Make output easier to read

This commit is contained in:
Greg Hellings
2025-09-11 23:01:00 -05:00
parent 251f333c3e
commit dd75f6cdd7
+2 -2
View File
@@ -32,7 +32,7 @@ def deploy [ $host: string, $build: string = "" ] {
if $buildhost == "linode" { if $buildhost == "linode" {
$buildhost = "isaiah" $buildhost = "isaiah"
} }
nixos-rebuild switch --use-remote-sudo --use-substitutes --target-host $host --build-host $buildhost | complete nixos-rebuild switch --sudo --use-substitutes --target-host $host --build-host $buildhost
} }
def ff [ $file: string ] { def ff [ $file: string ] {
@@ -40,5 +40,5 @@ def ff [ $file: string ] {
} }
def update_all [] { def update_all [] {
par-map $servers {|e| deploy $e} | explore par-map $servers {|e| deploy $e | complete} | explore
} }