From c9d08b523b9f8ff3db368faa930983b242eb1710 Mon Sep 17 00:00:00 2001 From: eshanized Date: Mon, 30 Dec 2024 02:32:38 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(=5Fna):=20upgrade=20post=20i?= =?UTF-8?q?nstallation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cz.yml | 2 +- .../snigdhaos-calamares-config.install | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cz.yml b/.github/workflows/cz.yml index 2d474a46..fee284c3 100644 --- a/.github/workflows/cz.yml +++ b/.github/workflows/cz.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v2 - name: Check Conventional Commit run: | diff --git a/snigdhaos-calamares-config/snigdhaos-calamares-config.install b/snigdhaos-calamares-config/snigdhaos-calamares-config.install index 170e046a..0f9b63ae 100644 --- a/snigdhaos-calamares-config/snigdhaos-calamares-config.install +++ b/snigdhaos-calamares-config/snigdhaos-calamares-config.install @@ -1,7 +1,11 @@ post_install() { - echo -e "\n** The files have been installed in /etc/calamares **\n" + echo -e "\n** The configuration files for Calamares have been installed in /etc/calamares. **" + echo -e "** Please review and adjust these files as needed for your system configuration. **" + echo -e "** Documentation: https://calamares.io/docs/ **\n" } post_upgrade() { + echo -e "\n** The package has been upgraded successfully. **" + echo -e "** Re-applying the configuration to /etc/calamares if necessary. **" post_install -} \ No newline at end of file +}