Skip to content

Commit

Permalink
fixed issue with env var ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
damiensedgwick committed Mar 26, 2024
1 parent 411675e commit 466957d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions napp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down Expand Up @@ -331,7 +331,7 @@ func createInitialUser(db *gorm.DB) {
}
}
`, sessEnv, dbEnv)
`, dbEnv, sessEnv)

filePath := filepath.Join(projectName, "cmd", "main.go")

Expand Down

0 comments on commit 466957d

Please sign in to comment.