mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
vcreate: don't use template names as project descriptions (#19439)
This commit is contained in:
parent
11e67a1a5f
commit
06fb8f0ffa
3 changed files with 3 additions and 2 deletions
|
@ -81,7 +81,7 @@ fn new_project(args []string) {
|
|||
exit(3)
|
||||
}
|
||||
|
||||
c.description = if args.len > 1 { args[1] } else { os.input('Input your project description: ') }
|
||||
c.description = os.input('Input your project description: ')
|
||||
|
||||
default_version := '0.0.0'
|
||||
c.version = os.input('Input your project version: (${default_version}) ')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue