diff --git a/pkg/templates/go_lib.go b/pkg/templates/go_lib.go index d8204ab..be087a3 100644 --- a/pkg/templates/go_lib.go +++ b/pkg/templates/go_lib.go @@ -27,7 +27,7 @@ set -euxo pipefail git clone %s --single-branch -v -b main --depth 1 %s cd %s rm -rf .git -NAME=%s ./init.sh +NAME="%s" ./init.sh rm -rf ./init.sh `, glt.Url(), diff --git a/pkg/templates/rust_app.go b/pkg/templates/rust_app.go index 5eb13a3..83b74a7 100644 --- a/pkg/templates/rust_app.go +++ b/pkg/templates/rust_app.go @@ -27,7 +27,7 @@ set -euxo pipefail git clone %s --single-branch -v -b main --depth 1 %s cd %s rm -rf .git -NAME=%s ./init.sh +NAME="%s" ./init.sh rm -rf ./init.sh `, rat.Url(), diff --git a/version/version.go b/version/version.go index af2a674..dd795ae 100755 --- a/version/version.go +++ b/version/version.go @@ -2,5 +2,5 @@ package version const ( AppName = "create-app" - Version = "v1.0.5" + Version = "v1.0.6" )