We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9657fb2 commit e813a50Copy full SHA for e813a50
.github/workflows/hil-library-test.yml
@@ -120,10 +120,10 @@ jobs:
120
cd /opt/runner_support/
121
122
123
- serials=$(echo $(./py_checkusb.py --type ${{ env.library }} --list serial --json) | jq ".\"${{ env.library }}\"[]" --compact-output )
+ declare -a serials=$(echo $(./py_checkusb.py --type ${{ env.library }} --list serial --json) | jq ".\"${{ env.library }}\"[]" --compact-output )
124
echo "Serials: " $serials
125
126
- for serial in "$serials"; do
+ for serial in "${serials[@]}"; do
127
echo "Serial: $serial"
128
done
129
0 commit comments