commit:     309e763e5f6da8fd38c5e5ab58788f103d7b6495
Author:     Kerin Millar <kfm <AT> plushkava <DOT> net>
AuthorDate: Wed Aug 20 03:13:47 2025 +0000
Commit:     Kerin Millar <kfm <AT> plushkava <DOT> net>
CommitDate: Wed Aug 20 03:13:47 2025 +0000
URL:        https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=309e763e

Simplify an exit call

Perl considers "exit" as "exit 0".

Signed-off-by: Kerin Millar <kfm <AT> plushkava.net>

 locale-gen | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/locale-gen b/locale-gen
index 03527f6..5eb73fc 100755
--- a/locale-gen
+++ b/locale-gen
@@ -109,7 +109,7 @@ umask 0022;
        # If a non-actionable update was requested, proceed no further.
        if (! @locales) {
                print "All of the requested locales are presently installed.\n";
-               exit 0;
+               exit;
        }
 
        # A proxy check is justified because compilation may take a long time.

Reply via email to