From bdc206d44089c21937b6c257e4df356e9ab8b1d2 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 5 Mar 2018 21:17:57 +0100 Subject: [PATCH] Remove unneeded mkdir --- run_integration_tests.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/run_integration_tests.go b/run_integration_tests.go index abf655407..7e182c9e8 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -280,12 +280,6 @@ func (env *TravisEnvironment) RunTests() error { return errors.New("CI: forbidden imports found") } - // check that the man pages are up to date - manpath := filepath.Join("doc", "new-man") - if err := os.MkdirAll(manpath, 0755); err != nil { - return err - } - // check that the entries in changelog/ are valid if err := run("calens"); err != nil { fmt.Fprintf(os.Stderr, "calens failed, files in changelog/ are not valid\n")