mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
10 lines
235 B
Bash
Executable File
10 lines
235 B
Bash
Executable File
#!/bin/sh -l
|
|
set -e
|
|
echo "::debug::\$cmd: $1"
|
|
RESULT=$(eval "$1")
|
|
RESULT="${RESULT//'%'/'%25'}"
|
|
RESULT="${RESULT//$'\n'/'%0A'}"
|
|
RESULT="${RESULT//$'\r'/'%0D'}"
|
|
echo "::debug::\$RESULT: $RESULT"
|
|
echo ::set-output name=result::"$RESULT"
|