From 494d6b55394b19378dda6b4a3b95960f64c7ee4b Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Sun, 16 Oct 2022 14:21:04 -0500 Subject: [PATCH] Structure for test documents --- .gitignore | 2 ++ main.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcee085 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +epub2html +test_docs diff --git a/main.go b/main.go index 9483233..6389524 100644 --- a/main.go +++ b/main.go @@ -107,7 +107,7 @@ func dump_archive(filename string) error { func main() { // process arguments - if err := dump_archive("the_future_is_female.epub"); err != nil { + if err := dump_archive("test_docs/the_future_is_female.epub"); err != nil { fmt.Printf("fatal error: %s\n", err) } } -- 2.45.2