summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--boot.install11
1 files changed, 10 insertions, 1 deletions
diff --git a/boot.install b/boot.install
index 0d634aadca0f..d40952f7e28b 100644
--- a/boot.install
+++ b/boot.install
@@ -1,3 +1,12 @@
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
post_upgrade() {
- echo "Run boot -u to update boot.jar"
+ note "Run 'boot -u' to update boot.jar"
}