mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-11 16:08:13 +00:00
Use test -r instead of < to check readability, to avoid syntax error.
This commit is contained in:
parent
764954eff2
commit
ca452d5f79
@ -44,7 +44,7 @@ do
|
||||
test -f "$file" || continue
|
||||
|
||||
# Check that file is readable.
|
||||
<$file || exit
|
||||
test -r "$file" || exit
|
||||
|
||||
# If the RCS file does not already exist,
|
||||
# initialize it with a description from $file's first line.
|
||||
|
Loading…
Reference in New Issue
Block a user