Script 'parse-games': don't include the date for unaccomplished game.
This commit is contained in:
parent
1739db4190
commit
797093c04a
@ -35,7 +35,6 @@ function parse_tour_info {
|
|||||||
local black=${BASH_REMATCH[3]}
|
local black=${BASH_REMATCH[3]}
|
||||||
local result=${BASH_REMATCH[5]}
|
local result=${BASH_REMATCH[5]}
|
||||||
|
|
||||||
[[ $date =~ \? ]] && date=
|
|
||||||
# Change the representation of result
|
# Change the representation of result
|
||||||
[[ $result == 1/2 ]] && result=1/2-1/2
|
[[ $result == 1/2 ]] && result=1/2-1/2
|
||||||
|
|
||||||
@ -49,7 +48,7 @@ function parse_tour_info {
|
|||||||
function parse_to_ini {
|
function parse_to_ini {
|
||||||
echo "[game${game_counter}]"
|
echo "[game${game_counter}]"
|
||||||
echo "round = $round"
|
echo "round = $round"
|
||||||
echo "date = $date"
|
[[ ! $date =~ \? ]] && echo "date = $date"
|
||||||
echo "white = $white"
|
echo "white = $white"
|
||||||
echo "black = $black"
|
echo "black = $black"
|
||||||
echo "result = '$result'"
|
echo "result = '$result'"
|
||||||
|
Loading…
Reference in New Issue
Block a user