lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master b8170c7 3/3: Remove a stray '>' in a redirect


From: Greg Chicares
Subject: [lmi-commits] [lmi] master b8170c7 3/3: Remove a stray '>' in a redirection
Date: Fri, 18 May 2018 12:37:12 -0400 (EDT)

branch: master
commit b8170c7e029a1b3901666b473e6cc732bc94e51e
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Remove a stray '>' in a redirection
    
    Evidently
      printf 'test\n' >> /dev/tty
    does nothing in cygwin. That device is supposed to exist:
      https://cygwin.com/cygwin-ug-net/using-specialnames.html
    so maybe doubling '>>' is the problem. Reverted that doubling,
    which was unintentional anyway.
---
 nychthemeral_test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nychthemeral_test.sh b/nychthemeral_test.sh
index 035962c..7926da1 100755
--- a/nychthemeral_test.sh
+++ b/nychthemeral_test.sh
@@ -105,7 +105,7 @@ make "$coefficiency" check_concinnity 2>&1 | sed -e 
"$build_clutter" -e "$concin
 printf '# install; check physical closure\n\n'
 make "$coefficiency" install check_physical_closure 2>&1 | tee 
/tmp/lmi/logs/install | sed -e "$build_clutter" -e "$install_clutter"
 
-printf 'Production system built--ready to start GUI test in another 
session.\n' >> /dev/tty
+printf 'Production system built--ready to start GUI test in another 
session.\n' > /dev/tty
 
 printf '\n# cgi and cli tests\n\n'
 make "$coefficiency" --output-sync=recurse cgi_tests cli_tests 2>&1 | tee 
/tmp/lmi/logs/cgi-cli | sed -e "$build_clutter" -e "$cli_cgi_clutter"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]