mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
7 lines
206 B
Bash
7 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[*]}
|