From a0834ce79eab45082436e1f7827483f72d1707ab Mon Sep 17 00:00:00 2001 From: Szymon Fiedler Date: Fri, 3 Jan 2025 18:15:23 +0100 Subject: [PATCH] Verbosity --- support/nix/redis.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/support/nix/redis.nix b/support/nix/redis.nix index 23d9eff01a..880bdaf9d1 100644 --- a/support/nix/redis.nix +++ b/support/nix/redis.nix @@ -4,6 +4,8 @@ mkShell { buildInputs = [ redis ]; shellHook = '' + set -x + ${builtins.readFile ./pushtrap.sh} # TMP=$(mktemp -d) @@ -26,5 +28,7 @@ mkShell { export REDIS_URL="unix://$SOCKET" pushtrap "kill -9 $(cat $PIDFILE);rm -rf $TMP" EXIT + + set +x ''; }