You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried with the latest binary using following args and it always crashes with "index out of range".
gedcom publish -living show -gedcom myfamily.ged -output-dir html
... 2023/08/12 09:49:50 html/john.html 2023/08/12 09:49:50 html/-1.html panic: runtime error: index out of range [0] with length 0
myfamily.ged is exported from myheritage.com
Is there a debug flag to see where it is actually failing?
The text was updated successfully, but these errors were encountered:
Hm, normally a panic should show the stack trace. Without that it would be near impossible to figure out what it's doing. You could try compiling from source and running the same command:
go build -o bin/gedcom ./cmd/gedcom
bin/gedcom publish -living show -gedcom myfamily.ged -output-dir html
I tried with the latest binary using following args and it always crashes with "index out of range".
gedcom publish -living show -gedcom myfamily.ged -output-dir html
...
2023/08/12 09:49:50 html/john.html
2023/08/12 09:49:50 html/-1.html
panic: runtime error: index out of range [0] with length 0
myfamily.ged is exported from myheritage.com
Is there a debug flag to see where it is actually failing?
The text was updated successfully, but these errors were encountered: