From 2f89dc90609dcbe9f500c41ea2bbfc83a7e4922e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 25 Dec 2023 11:07:47 -0500 Subject: [PATCH] plymouth-populate-initrd: Fix usage message It currently says the scripts name is `plymouth` not `plymouth-populate-initrd`. This commit changes it to use $0 --- scripts/plymouth-populate-initrd.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plymouth-populate-initrd.in b/scripts/plymouth-populate-initrd.in index 1c29e4c7..8ccac22c 100755 --- a/scripts/plymouth-populate-initrd.in +++ b/scripts/plymouth-populate-initrd.in @@ -424,7 +424,7 @@ function usage() { rc=1 fi - echo "usage: plymouth [ --verbose | -v ] { --targetdir | -t } { --x11-directory | -x } " > $output + echo "usage: $0 [ --verbose | -v ] { --targetdir | -t } { --x11-directory | -x } " > $output exit $rc }