From 5487632f300d7109c47b1021d57f02e269ed17e8 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Wed, 13 Apr 2016 00:26:35 +0200 Subject: abuild-sudo: make error msg "Not a member of group abuild" more clear Few days ago some user on IRC pointed out that the current error message: abuild-apk: Not a member of group abuild is confusing. He was trying to build a package using abuild -r and didn't know what this message means. fixes #5408 --- abuild-sudo.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'abuild-sudo.c') diff --git a/abuild-sudo.c b/abuild-sudo.c index f3479fc..f0c074e 100644 --- a/abuild-sudo.c +++ b/abuild-sudo.c @@ -74,8 +74,10 @@ int main(int argc, const char *argv[]) if (grent == NULL) errx(1, "%s: Group not found", ABUILD_GROUP); - if (!is_in_group(grent->gr_gid)) - errx(1, "Not a member of group %s\n", ABUILD_GROUP); + if (!is_in_group(grent->gr_gid)) { + errx(1, "User %s is not a member of group %s\n", + getlogin(), ABUILD_GROUP); + } cmd = strrchr(argv[0], '-'); if (cmd == NULL) -- cgit v1.2.3-60-g2f50