Closed MartinPacker closed 4 years ago
e.g.
filterCSV < tests/test1.csv promote 1
gives
"colour","note","position","shape","level","level0","level1","level2" "","","","square","0","X" "","","","","0","A1" "","","","","0","A2" "","","","","1","","A2A" "","","","","2","","","A2A1"
when it should give
"colour","note","position","shape","level","level0","level1","level2" "","","","","0","A1" "","","","","0","A2" "","","","","1","","A2A" "","","","","2","","","A2A1" "","","","square","0","X"
Using dump confirms this mis-insertion.
The issue is that A1 etc got inserted after X - when it should've been before.
Fixed with asbullet.
asbullet
e.g.
gives
when it should give
Using dump confirms this mis-insertion.