diff --git a/README.md b/README.md index 3b80a10..c25131c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# flowcat 4.0.0 +# flowcat v4.0.0 ## Flowcat helps developers bring their todo tasks forward to the user so you don't need to waste time looking for them. It provides a clear overview of your tasks and allows you to stay focused on your work. You can also output to a file for planning purposes or to separate tasks into different categories diff --git a/main_test.go b/main_test.go index 77e51a7..77ec392 100644 --- a/main_test.go +++ b/main_test.go @@ -55,6 +55,12 @@ func TestPre(t *testing.T) { if err != nil { t.Fatal("[PRE-TEST][BIN FOLDER] creating the folder bin/flowcat-linux-amd64 failed", err.Error()) } + + //Create tmp file folder + err = os.MkdirAll("tests/files", 0775) + if err != nil { + t.Fatal("Could not perform pre-test actions, creating the tmp file folder failed", err.Error()) + } } // func TestCfg(t *testing.T) {