Add A Warning Banner To Declare Breaking Changes
Signed-off-by: rokibhasansagar <10854164+rokibhasansagar@users.noreply.github.com>
This commit is contained in:
parent
5839b6f7c1
commit
62fbb9016e
1 changed files with 22 additions and 0 deletions
22
cleanup.sh
22
cleanup.sh
|
@ -16,6 +16,28 @@ fi
|
||||||
# Make Sure The Environment Is Non-Interactive
|
# Make Sure The Environment Is Non-Interactive
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
# Stick A Warning Message For Breaking Changes
|
||||||
|
function _warningMsg() {
|
||||||
|
cat <<EOBT
|
||||||
|
|
||||||
|
╔══════════════════════════════════════════════════════════════╗
|
||||||
|
║ ║
|
||||||
|
║ The Project Script Changed Recently, ║
|
||||||
|
║ There Are Many Breaking Changes. ║
|
||||||
|
║ ------------------------------------------------ ║
|
||||||
|
║ Please Read The README.md File Properly. ║
|
||||||
|
║ ------------------------------------------------ ║
|
||||||
|
║ Visit Here & Read Carefully: ║
|
||||||
|
║ https://github.com/rokibhasansagar/slimhub_actions/#readme ║
|
||||||
|
║ ║
|
||||||
|
╚══════════════════════════════════════════════════════════════╝
|
||||||
|
|
||||||
|
EOBT
|
||||||
|
}
|
||||||
|
|
||||||
|
# Print the Warning Message
|
||||||
|
printf "\e[33;1;2m" && _warningMsg && printf "\e[0m" && sleep 1s
|
||||||
|
|
||||||
export AptPurgeList=" " DirPurgeList=" "
|
export AptPurgeList=" " DirPurgeList=" "
|
||||||
|
|
||||||
# Make supported retainer list
|
# Make supported retainer list
|
||||||
|
|
Loading…
Reference in a new issue