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 7f8e213 commit 170ae35Copy full SHA for 170ae35
tests/wamr-test-suites/test_wamr.sh
@@ -119,7 +119,7 @@ do
119
;;
120
m)
121
echo "set compile target of wamr" ${OPTARG}
122
- TARGET=${OPTARG^^} # set target to uppercase if input x86_32 or x86_64 --> X86_32 and X86_64
+ TARGET=$(echo "$OPTARG" | tr '[a-z]' '[A-Z]') # set target to uppercase if input x86_32 or x86_64 --> X86_32 and X86_64
123
124
w)
125
echo "enable WASI threads"
0 commit comments