Skip to content

Commit

Permalink
Ok. This seems to install both binaries and both source. Needed a
Browse files Browse the repository at this point in the history
`nim.cfg` to add ".." to the path, though.
  • Loading branch information
c-blake committed Aug 23, 2020
1 parent 9570ead commit 814175d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hldiff.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = "0.2"
author = "Charles Blake"
description = "A port of Python difflib to compute & (re)highlight diff output intraline"
license = "MIT/ISC"
srcDir = "hldiff"
srcDir = "hldiffpkg"
installExt = @[ "nim" ]
bin = @[ "hldiff", "edits" ]

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion hldiff.nim → hldiffpkg/hldiff.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import strutils, os, sets, tables, hldiff/edits,
import strutils, os, sets, tables, hldiffpkg/edits,
cligen/[parseopt3, osUt, textUt, humanUt]
var
highlights = { #key lower for optionNormalize camelCase kebab-case snake_case
Expand Down
1 change: 1 addition & 0 deletions hldiffpkg/nim.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
path = ".."

0 comments on commit 814175d

Please sign in to comment.