Make filesDir if it does not exist

This commit is contained in:
Matt Hazinski 2015-09-25 22:03:14 -04:00
parent a8117de38d
commit 11cb55232a
1 changed files with 8 additions and 1 deletions

View File

@ -6,6 +6,8 @@ import (
"net"
"net/http"
"regexp"
"os"
"fmt"
"github.com/flosch/pongo2"
"github.com/zenazn/goji"
@ -37,7 +39,12 @@ func main() {
goji.Abandon(middleware.Logger)
}
// check trailing slashes
// make directory if needed
err := os.MkdirAll(Config.filesDir, 0755)
if err != nil {
fmt.Printf("Error: could not create files directory")
os.exit(1)
}
// Template Globals
pongo2.DefaultSet.Globals["sitename"] = Config.siteName