|
|
|
@@ -63,6 +63,6 @@ else |
|
|
|
fi |
|
|
|
|
|
|
|
result=$(cat /usr/local/playback/result.json) |
|
|
|
score0=$(parse_json $result "Student") |
|
|
|
score1=$(parse_json $result "Tricker") |
|
|
|
score_0=$(echo "$result" | grep -oP '(?<="Student":)\d+') |
|
|
|
score_1=$(echo "$result" | grep -oP '(?<="Tricker":)\d+') |
|
|
|
curl $URL -X PUT -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" -d '{"result":[{"team_id":0, "score":'${score0}'}, {"team_id":1, "score":'${score1}'}], "mode":'${MODE}'}' |