commit
347b6b7ab1
1 changed files with 4 additions and 2 deletions
|
|
@ -723,8 +723,10 @@ proc init(options: Options) =
|
||||||
nimbleFile = pkgName.changeFileExt("nimble")
|
nimbleFile = pkgName.changeFileExt("nimble")
|
||||||
validatePackageName(nimbleFile.changeFileExt(""))
|
validatePackageName(nimbleFile.changeFileExt(""))
|
||||||
|
|
||||||
if existsFile(os.getCurrentDir() / nimbleFile):
|
let nimbleFilePath = os.getCurrentDir() / nimbleFile
|
||||||
raise newException(NimbleError, "Nimble file already exists.")
|
if existsFile(nimbleFilePath):
|
||||||
|
let errMsg = "Nimble file already exists: $#" % nimbleFilePath
|
||||||
|
raise newException(NimbleError, errMsg)
|
||||||
|
|
||||||
display("Using", "$# for new package name" % [pkgName.escape()],
|
display("Using", "$# for new package name" % [pkgName.escape()],
|
||||||
priority = HighPriority)
|
priority = HighPriority)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue