File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
integrations/selenium_grid Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # Text color variables
4
+ txtund=$( tput sgr 0 1) # Underline
5
+ txtbld=$( tput bold) # Bold
6
+ regred=$( tput setaf 1) # Red
7
+ regblu=$( tput setaf 4) # Blue
8
+ reggrn=$( tput setaf 2) # Green
9
+ regwht=$( tput setaf 7) # White
10
+ txtrst=$( tput sgr0) # Reset
11
+ info=${regwht} * ${txtrst} # Feedback
12
+ pass=${regblu} * ${txtrst}
13
+ warn=${regred} * ${txtrst}
14
+ ques=${regblu} ? ${txtrst}
15
+
16
+ FAIL_MSG=" ${regred} [FAILURE]${txtrst} "
17
+ SUCCESS_MSG=" ${reggrn} [SUCCESS]${txtrst} "
Original file line number Diff line number Diff line change 4
4
# Usage: grid-hub {start|stop}
5
5
#
6
6
7
- source $( dirname $0 ) /util
7
+ source $( dirname $0 ) /font_color
8
8
9
9
EXPECTED_ARGS=1
10
10
E_BADARGS=65
Original file line number Diff line number Diff line change 4
4
# Usage: grid-node {start|stop}
5
5
#
6
6
7
- source $( dirname $0 ) /util
7
+ source $( dirname $0 ) /font_color
8
8
9
9
EXPECTED_ARGS=1
10
10
E_BADARGS=65
You can’t perform that action at this time.
0 commit comments