Skip to content

Commit 2b2b0a6

Browse files
committed
Skip Sonar analysis in TCP signer files
1 parent 086c655 commit 2b2b0a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tcpsigner/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trap stop SIGTERM SIGINT SIGQUIT SIGHUP ERR
1616
# ==========================================================
1717
# ==========================================================
1818
while getopts ":p:h" opt; do
19-
case "$opt" in
19+
case "$opt" in # NOSONAR
2020
p)
2121
PORT=$OPTARG
2222
;;

tcpsigner/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PORT=9999
44
while getopts ":p:" opt; do
5-
case "$opt" in
5+
case "$opt" in # NOSONAR
66
p)
77
PORT=$OPTARG
88
;;

0 commit comments

Comments
 (0)