texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * tp/maintain/regenerate_non_ascii_tar_file.sh: D


From: Gavin D. Smith
Subject: branch master updated: * tp/maintain/regenerate_non_ascii_tar_file.sh: Do not use "if !" construct.
Date: Mon, 18 Nov 2024 14:12:30 -0500

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 0787bdf415 * tp/maintain/regenerate_non_ascii_tar_file.sh: Do not use 
"if !" construct.
0787bdf415 is described below

commit 0787bdf41557d8e01224066d5339da3be5bf9485
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Mon Nov 18 19:12:21 2024 +0000

    * tp/maintain/regenerate_non_ascii_tar_file.sh:
    Do not use "if !" construct.
---
 ChangeLog                                    | 5 +++++
 tp/maintain/regenerate_non_ascii_tar_file.sh | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index df96fa1cab..59415e483c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-11-18  Gavin Smith <gavinsmith0123@gmail.com>
+
+       * tp/maintain/regenerate_non_ascii_tar_file.sh:
+       Do not use "if !" construct.
+
 2024-11-18  Gavin Smith <gavinsmith0123@gmail.com>
 
        version check for GNU tar
diff --git a/tp/maintain/regenerate_non_ascii_tar_file.sh 
b/tp/maintain/regenerate_non_ascii_tar_file.sh
index 3e63fd3093..6c1e303a30 100755
--- a/tp/maintain/regenerate_non_ascii_tar_file.sh
+++ b/tp/maintain/regenerate_non_ascii_tar_file.sh
@@ -16,7 +16,7 @@ fi
 cd $tests_input
 
 input=non_ascii
-if ! test -d $input ; then
+if test -d $input ; then true ; else
     echo "$0: Input directory $input not found in $tests_input" 1>&2
     exit 1
 fi



reply via email to

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