We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 91f2b72 + 4347737 commit 9efc154Copy full SHA for 9efc154
1 file changed
src/gocover/install.sh
@@ -32,6 +32,7 @@ HTML="${HTML}"
32
COUNT="${COUNT}"
33
NUM_PROGRAMS="${NUM_PROGRAMS}"
34
RACE="${RACE}"
35
+TAGS="${TAGS}"
36
VERBOSE="${VERBOSE}"
37
IGNORE_PKGS=("${IGNORE_PKGS[@]}")
38
POSARGS=()
@@ -53,6 +54,10 @@ while [[ \$# -gt 0 ]]; do
53
54
HTML="false"
55
shift
56
;;
57
+ -tags|--tags)
58
+ TAGS="\$2"
59
+ shift 2
60
+ ;;
61
*)
62
POSARGS+=("\$1")
63
0 commit comments