Skip to content

Commit

Permalink
Tentative fix for the CI build issues in nim-beacon-chain
Browse files Browse the repository at this point in the history
  • Loading branch information
zah committed Jul 9, 2019
1 parent 99869e4 commit 6fb5ee6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion confutils.nim
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ proc completeCmdArg(T: type bool, val: TaintedString): seq[string] =
proc completeCmdArg(T: type string, val: TaintedString): seq[string] =
return @[]

proc completeCmdArg*(T: type[InputFile|InputDir|OutFile|OutDir|OutPath], val: TaintedString): seq[string] =
proc completeCmdArg*(T: type[InputFile|TypedInputFile|InputDir|OutFile|OutDir|OutPath],
val: TaintedString): seq[string] =
let (dir, name, ext) = splitFile(val)
let tail = name & ext
# Expand the directory component for the directory walker routine
Expand Down

0 comments on commit 6fb5ee6

Please sign in to comment.