Skip to content

Commit

Permalink
fix(build): Fix Dockerfile zepto version replace
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosstrand committed Jul 25, 2021
1 parent ce31524 commit 9da6d3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func ExecuteWeb(templates embed.FS, args []string) {
if err != nil {
panic(err)
}
utils.ReplaceTextOnFile(path.Join(projectDir, "Dockerfile"), DEFAULT_DOCKER_GO_ZEPTO_PATH, DEFAULT_DOCKER_GO_ZEPTO_PATH+"@"+zeptocli.VERSION)
utils.ReplaceTextOnFile(path.Join(projectDir, "Dockerfile"), DEFAULT_DOCKER_GO_ZEPTO_PATH, DEFAULT_DOCKER_GO_ZEPTO_PATH+"@v"+zeptocli.VERSION)
fmt.Println("Preparing go mod...")
s.Start()
// Renaming go mod since it can't be embed
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package zeptocli

var VERSION = "1.0.2"
var VERSION = "1.0.3"

0 comments on commit 9da6d3a

Please sign in to comment.