From c4684c79af3d2ca6d94da1243c6863ead5bf51a4 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Thu, 2 Mar 2023 13:45:56 +0100 Subject: [PATCH] tvbrowser: fix shell indentation in test derivation --- pkgs/applications/misc/tvbrowser/test.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/misc/tvbrowser/test.nix b/pkgs/applications/misc/tvbrowser/test.nix index b5d12ac6bad9..bee843ccbecc 100644 --- a/pkgs/applications/misc/tvbrowser/test.nix +++ b/pkgs/applications/misc/tvbrowser/test.nix @@ -12,20 +12,20 @@ let runtimeInputs = [ xorg.xwininfo tvbrowser ]; text = '' function find_tvbrowser_windows { - for window_name in java tvbrowser-TVBrowser 'Setup assistant' ; do - grep -q "$window_name" "$1" || return 1 - done + for window_name in java tvbrowser-TVBrowser 'Setup assistant' ; do + grep -q "$window_name" "$1" || return 1 + done } tvbrowser & for _ in {0..900} ; do - xwininfo -root -tree \ - | sed 's/.*0x[0-9a-f]* \"\([^\"]*\)\".*/\1/; t; d' \ - | tee window-names - echo - if find_tvbrowser_windows window-names ; then - break - fi - sleep 1 + xwininfo -root -tree \ + | sed 's/.*0x[0-9a-f]* \"\([^\"]*\)\".*/\1/; t; d' \ + | tee window-names + echo + if find_tvbrowser_windows window-names ; then + break + fi + sleep 1 done find_tvbrowser_windows window-names '';