Skip to content

Commit

Permalink
🐛 fix(_na): upgrade post installation
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed Dec 29, 2024
1 parent d3036e5 commit c9d08b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v2

- name: Check Conventional Commit
run: |
Expand Down
8 changes: 6 additions & 2 deletions snigdhaos-calamares-config/snigdhaos-calamares-config.install
Original file line number Diff line number Diff line change
@@ -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
}
}

0 comments on commit c9d08b5

Please sign in to comment.