From 466957d580288c64c19d3366557c4149eb35e19e Mon Sep 17 00:00:00 2001 From: Damien Sedgwick Date: Tue, 26 Mar 2024 22:18:46 +0000 Subject: [PATCH] fixed issue with env var ordering --- napp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/napp.go b/napp.go index 5d29339..96f2dca 100644 --- a/napp.go +++ b/napp.go @@ -15,7 +15,7 @@ func main() { app := &cli.App{ Name: "napp", UsageText: "[command] [command options]", - Version: "v0.5.1", + Version: "v0.5.2", Description: `A command line tool that bootstraps Go, HTMX and SQLite web applications and Dockerises them for ease of deployment`, Commands: []cli.Command{ @@ -331,7 +331,7 @@ func createInitialUser(db *gorm.DB) { } } -`, sessEnv, dbEnv) +`, dbEnv, sessEnv) filePath := filepath.Join(projectName, "cmd", "main.go")