Skip to content

Commit

Permalink
1.1.6: rm nim-devel breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
disruptek committed May 26, 2023
1 parent 70edf29 commit 301a822
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nimph.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "1.1.5"
version = "1.1.6"
author = "disruptek"
description = "nim package handler from the future"
license = "MIT"
Expand Down
3 changes: 2 additions & 1 deletion src/nimph/config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ template setDefaultsForConfig(result: ConfigRef) =
result.notes.incl hintPath
elif not defined(debug):
excludeAllNotes(result, hintConf)
excludeAllNotes(result, hintLineTooLong)
when compiles(hintLineTooLong):
excludeAllNotes(result, hintLineTooLong)

proc parseConfigFile*(path: string): Option[ConfigRef] =
## use the compiler to parse a nim.cfg without changing to its directory
Expand Down

0 comments on commit 301a822

Please sign in to comment.