🐛 fix(_na): upgrade post installation

This commit is contained in:
eshanized
2024-12-30 02:32:38 +05:30
parent d3036e54bb
commit c9d08b523b
2 changed files with 7 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Check Conventional Commit - name: Check Conventional Commit
run: | run: |

View File

@@ -1,7 +1,11 @@
post_install() { 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() { post_upgrade() {
echo -e "\n** The package has been upgraded successfully. **"
echo -e "** Re-applying the configuration to /etc/calamares if necessary. **"
post_install post_install
} }