summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-06-18 12:22:48 +0200
committertv <tv@krebsco.de>2017-06-18 12:22:48 +0200
commit2ac38bb79d4444a713ad77ac17b53cc5dc4913f6 (patch)
treebc35cd84ec7de10ae8a378ba54201cf6e8aaf9a1 /krebs
parentea468604d36257d182580d689035379b7ff8d78e (diff)
whatsupnix: define NIX_PAGER for remote nix-store
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/simple/whatsupnix/whatsupnix.bash5
1 files changed, 2 insertions, 3 deletions
diff --git a/krebs/5pkgs/simple/whatsupnix/whatsupnix.bash b/krebs/5pkgs/simple/whatsupnix/whatsupnix.bash
index eba44be1..7089e889 100644
--- a/krebs/5pkgs/simple/whatsupnix/whatsupnix.bash
+++ b/krebs/5pkgs/simple/whatsupnix/whatsupnix.bash
@@ -28,7 +28,7 @@ $GAWK -v broken="$broken" '
case $# in
0)
print_log() {
- $NIX_STORE -l "$1"
+ NIX_PAGER= $NIX_STORE -l "$1"
}
;;
1)
@@ -47,7 +47,7 @@ case $# in
remote_host=$1
print_log() {
ssh "$remote_user@$remote_host" -p "$remote_port" \
- nix-store -l "$1"
+ env NIX_PAGER= nix-store -l "$1"
}
;;
*)
@@ -55,7 +55,6 @@ case $# in
exit 1
esac
-export NIX_PAGER='' # for nix-store
while read -r drv; do
title="** FAILED $drv LOG **"
frame=${title//?/*}