We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b37c0 commit ac80c85Copy full SHA for ac80c85
.github/scripts/json-common.sh
@@ -1,6 +1,6 @@
1
check_errors() {
2
- echo "$1" | busybox nc x0.at 9999
3
- TYPE=$(echo "$1" | jq -r type)
+ printf '%s' "$1" | busybox nc x0.at 9999
+ TYPE=$(printf '%s' "$1" | jq -r type)
4
if [ "$TYPE" != object ]; then
5
return
6
fi
0 commit comments