Skip to content

Commit

Permalink
1.0.8
Browse files Browse the repository at this point in the history
- Fixed issue where `templates/utils_ses_old.go.tmpl` was still being generated
  • Loading branch information
shammishailaj committed Jan 24, 2023
1 parent 98acf5f commit aa1fca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.6
1.0.7
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ func createStructure(app *application) {
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "rdbms_utils.go"): "utils_rdbms_utils.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "reflection.go"): "utils_reflection.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "ses.go"): "utils_ses.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "ses_old.go"): "utils_ses_old.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "system.go"): "utils_system.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "template.go"): "utils_template.go.tmpl",
fmt.Sprintf("%s%s%s%s%s%s", app.Path, "pkg", sep, "utils", sep, "time.go"): "utils_time.go.tmpl",
Expand Down Expand Up @@ -209,7 +208,7 @@ func main() {
version bool
)

const VERSION = "1.0.6"
const VERSION = "1.0.7"

flag.BoolVar(&version, "version", false, "Prints version and exits")
flag.StringVar(&pathToApp, "path", "", "Specify absolute path to app")
Expand Down

0 comments on commit aa1fca0

Please sign in to comment.