File tree 4 files changed +5
-4
lines changed 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Package
2
2
3
- version = " 0.16.4 "
3
+ version = " 0.18.0 "
4
4
author = " Dominik Picheta"
5
5
description = " Nim package manager."
6
6
license = " BSD"
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ bin = @["issue799"]
9
9
10
10
# Dependencies
11
11
requires " nim >= 0.16.0"
12
- requires " nimble#head "
12
+ requires " nimble == 0.16.4 "
Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ suite "issues":
31
31
# path that they get permanently installed at.
32
32
cleanDir installDir
33
33
cd " issue799" :
34
- let (output, exitCode) = execNimbleYes (" build" )
34
+ let (output, exitCode) = execNimbleYes (" build" )
35
35
check exitCode == QuitSuccess
36
36
var lines = output.processOutput
37
37
lines.keepItIf (unindent (it).startsWith (" Executing" ))
38
38
39
39
for line in lines:
40
40
if line.contains (" issue799" ):
41
41
let nimbleInstallDir = getPackageDir (
42
- pkgsDir, & " nimble-{ nimbleVersion } " )
42
+ pkgsDir, & " nimble-0.16.4 " )
43
43
let pkgInstalledPath = " --path:" & nimbleInstallDir.quoteShell & " "
44
44
check line.contains (pkgInstalledPath)
45
45
Original file line number Diff line number Diff line change @@ -33,3 +33,4 @@ suite "requires flag":
33
33
# check output.processOutput.inLines("Success: nimqml installed successfully.")
34
34
# check output.processOutput.inLines("Installing [email protected] ")
35
35
36
+
You can’t perform that action at this time.
0 commit comments