mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
c28f7cb29f
Initial part of #435
7 lines
209 B
Bash
7 lines
209 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Expand the arguments into an array of strings. This is required because the GitHub action
|
|
# provides all arguments concatenated as a single string.
|
|
ARGS=("$@")
|
|
|
|
/bin/go-mnd "${ARGS[*]}"
|