Skip to content

Commit 010b85c

Browse files
committed
Corrected headings in examples
1 parent 8640e47 commit 010b85c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

maven_example.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ showGlobalSettingFile() {
2222

2323
clear
2424
menuInit "Maven demo menu"
25-
submenuHead "Life cycle commands:"
25+
submenuHead "Life cycle commands "
2626
menuItem c "Clean all" "mvn clean:clean"
2727
menuItem x "Compile" "mvn clean compile"
2828
menuItem t "Test" "mvn clean test"
2929
menuItem i "Install" "mvn clean install"
30-
submenuHead "Also usefull:"
30+
submenuHead "Also usefull "
3131
menuItem d "Analyze dependencies" "mvn dependency:analyze"
3232
menuItem u "Clean compile force updates" "mvn clean compile -U -DskipTests"
3333
menuItem e "Show effective settings" "mvn help:effective-settings"

shellmenu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ waitstatus=true # whether to wait for key press after menu c
1919
continuemenu=true # whether to continue menu loop (quit will set this to false)
2020
globalClmWidth=20 # the default (minimum) column width
2121
actualmenu="EasyKey.shellmenu" # the default menu heading
22-
actualsubmenuname="Your commands:" # the default sub menu heading
22+
actualsubmenuname="Your commands " # the default sub menu heading
2323
menuHeadingFGClr="$clrWhite" # the default menu heading foreground color
2424
menuHeadingBGClr="$clrBlue" # the default menu heading background color
2525
submenuFGClr="$clrCyan" # the default sub menu heading foreground color
@@ -34,7 +34,7 @@ formattedheading="" # the cache for formatted heading
3434
generatedmenu="" # the menu cache (menu will be compiled once and then cached)
3535
menudatamap=() # the menu data
3636
has_two_clms=false # whether the menu hast two columns
37-
calculatedMenuWidth=$(( 2 * globalClmWidth + 3 )) # the calculated column width
37+
calculatedMenuWidth=$(( globalClmWidth + 3 )) # the calculated column width
3838

3939
############################
4040
############################

0 commit comments

Comments
 (0)