1
1
#! /usr/bin/env bash
2
2
3
- HOP_PATH=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
3
+ HOP_PATH=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd)
4
4
TOOLKIT_PATH=$( dirname " $HOP_PATH " )
5
5
6
- #
7
- # Script Output
8
- #
9
-
10
- # Determine width of the program
11
- ACTUAL_WIDTH=$(( $(tput cols) - 2 ))
12
- MAX_WIDTH=100
13
-
14
- if test " $ACTUAL_WIDTH " -gt " $MAX_WIDTH " ; then
15
- WIDTH=$MAX_WIDTH
16
- else
17
- WIDTH=$ACTUAL_WIDTH
18
- fi
19
-
20
- # Setup Color Outputs
21
- if test -t 1; then
22
- ncolors=$( tput colors)
23
-
24
- if test -n " $ncolors " && test " $ncolors " -ge 8; then
25
- COLOR_R=1 # color code - RED
26
- COLOR_G=2 # color code - GREEN
27
- COLOR_Y=3 # color code - YELLOW
28
- COLOR_B=4 # color code - BLUE
29
- COLOR_M=5 # color code - MAGENTA
30
- COLOR_C=6 # color code - CYAN
31
- COLOR_N=246 # color code - NEUTRAL (GRAY)
32
-
33
- BG_R=" $( tput setab $COLOR_R ) " # Background - RED
34
- BG_G=" $( tput setab $COLOR_G ) " # Background - GREEN
35
- BG_Y=" $( tput setab $COLOR_Y ) " # Background - YELLOW
36
- BG_B=" $( tput setab $COLOR_B ) " # Background - BLUE
37
- # BG_M="$(tput setab $COLOR_M)" # Background - MAGENTA
38
- # BG_C="$(tput setab $COLOR_C)" # Background - CYAN
39
- # BG_N="$(tput setab $COLOR_N)" # Background - NEUTRAL (GRAY)
40
-
41
- # FG_R="$(tput setaf $COLOR_R)" # Foreground - RED
42
- # FG_G="$(tput setaf $COLOR_G)" # Foreground - GREEN
43
- # FG_Y="$(tput setaf $COLOR_Y)" # Foreground - YELLOW
44
- # FG_B="$(tput setaf $COLOR_B)" # Foreground - BLUE
45
- FG_M=" $( tput setaf $COLOR_M ) " # Foreground - MAGENTA
46
- FG_C=" $( tput setaf $COLOR_C ) " # Foreground - CYAN
47
- FG_N=" $( tput setaf $COLOR_N ) " # Foreground - NEUTRAL (GRAY)
48
-
49
- BOLD=" $( tput bold) "
50
- RESET=" $( tput sgr0) "
51
- fi
52
- fi
53
-
54
- function join {
55
- local IFS=" $1 "
56
- shift
57
- echo " $* "
58
- }
6
+ source " $TOOLKIT_PATH /bin/_helpers"
59
7
60
8
function describe_command {
61
9
local COMMAND_NAME=$1
@@ -79,19 +27,6 @@ function describe_command {
79
27
join " " " ${SEGMENTS[@]} " " ${RESET} "
80
28
}
81
29
82
- function tag {
83
- local STYLE=$1
84
- local LABEL=$2
85
- shift 2
86
-
87
- echo " $@ " " ${STYLE} ${LABEL} ${RESET} "
88
- }
89
-
90
- function output_error {
91
- tag " $BG_R " " ERROR" -n
92
- echo " $1 "
93
- }
94
-
95
30
EXPLAIN_COUNT=0
96
31
function explain {
97
32
EXPLAIN_COUNT=$(( EXPLAIN_COUNT + 1 ))
@@ -159,6 +94,9 @@ function display_help {
159
94
describe_command " seed" " hop artisan db:seed"
160
95
describe_command " test" " hop artisan test"
161
96
describe_command " tinker" " hop artisan tinker"
97
+ echo
98
+ tag " $BG_Y$BOLD " " Commands"
99
+ describe_command " proxy" " \$ @" " Start a proxy for this project."
162
100
}
163
101
164
102
if [ $# -lt 1 ] || [ " $1 " == " help" ] || [ " $1 " == " -h" ] || [ " $1 " == " -help" ] || [ " $1 " == " --help" ]; then
@@ -411,6 +349,10 @@ case $1 in
411
349
shift 1
412
350
run_exec_command php vendor/bin/pint
413
351
;;
352
+ " proxy" )
353
+ shift 1
354
+ bash " $TOOLKIT_PATH /bin/proxy" " $@ "
355
+ ;;
414
356
" ps" |" status" )
415
357
shift 1
416
358
run_command ps " $@ "
0 commit comments