From 945ba7534965f2233ebc575054fd1b20c25c4354 Mon Sep 17 00:00:00 2001 From: eshanized Date: Tue, 31 Dec 2024 05:01:26 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs:=20more=20clear=20and=20ext?= =?UTF-8?q?ended=20post=20execution=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../snigdhaos-bootloader-grub.install | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/snigdhaos-bootloader-grub/snigdhaos-bootloader-grub.install b/snigdhaos-bootloader-grub/snigdhaos-bootloader-grub.install index 3737c5fc..a16bed3a 100644 --- a/snigdhaos-bootloader-grub/snigdhaos-bootloader-grub.install +++ b/snigdhaos-bootloader-grub/snigdhaos-bootloader-grub.install @@ -1,7 +1,14 @@ -post_install(){ - echo -e "\n All the files has been installed on /etc/pacman.d/hooks/ \n" +post_install() { + echo -e "\nAll the files have been successfully installed in /etc/pacman.d/hooks/\n" + echo -e "To verify the installed hooks, you can use the following command:\n" + echo -e " ls -l /etc/pacman.d/hooks/\n" + echo -e "Make sure your pacman hooks are functioning as expected for optimal performance.\n" } -post_upgrade(){ +post_upgrade() { + echo -e "\nUpgrade successful.\n" post_install -} \ No newline at end of file + echo -e "If you have customized configurations, ensure they are up-to-date. You can use:\n" + echo -e " pacdiff\n" + echo -e "To review and merge configuration changes.\n" +}