mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
8 lines
206 B
Bash
8 lines
206 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Expand the arguments into an array of strings. This is requires because the GitHub action
|
||
|
# provides all arguments concatenated as a single string.
|
||
|
ARGS=("$@")
|
||
|
|
||
|
/bin/gosec ${ARGS[*]}
|