mirror of
https://github.com/beego/bee.git
synced 2024-11-22 15:10:54 +00:00
fix #99
This commit is contained in:
parent
ad453bb3e0
commit
e23253bc23
9
new.go
9
new.go
@ -100,9 +100,12 @@ func createApp(cmd *Command, args []string) int {
|
|||||||
|
|
||||||
apppath := path.Join(curpath, args[0])
|
apppath := path.Join(curpath, args[0])
|
||||||
|
|
||||||
if _, err := os.Stat(apppath); os.IsNotExist(err) == false {
|
if isExist(apppath) {
|
||||||
fmt.Printf("[ERRO] Path (%s) already exists\n", apppath)
|
ColorLog("[ERRO] Path (%s) already exists\n", apppath)
|
||||||
os.Exit(2)
|
ColorLog("[WARN] Do you want to overwrite it? [yes|no]]")
|
||||||
|
if !askForConfirmation() {
|
||||||
|
os.Exit(2)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println("[INFO] Creating application...")
|
fmt.Println("[INFO] Creating application...")
|
||||||
|
Loading…
Reference in New Issue
Block a user