This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch fix-vieet-bashism
in repository efl.
View the commit online.
commit 4aa3b45ba1def6d46fde21476495ed6340438afc
Author: Ross Vandegrift <r...@kallisti.us>
AuthorDate: Sun Dec 24 17:19:14 2023 -0800
fix vieet bashism
vieet declares /bin/sh, but read without a variable doesn't work on posix sh.
---
src/bin/eet/vieet | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/eet/vieet b/src/bin/eet/vieet
index 48a6827943..50d07845f8 100755
--- a/src/bin/eet/vieet
+++ b/src/bin/eet/vieet
@@ -68,7 +68,7 @@ do
if [ $? -ne 0 ]; then
echo "Failed compiling eet file."
echo "Press 'Return' to reopen the editor, or ^C to abort."
- read
+ read _dummy
else
DONE=1
fi
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.