mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
Invalid regex on macOS
- fix the regex
This commit is contained in:
parent
40d32f82fc
commit
71fd703317
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ let
|
|||
(_: v:
|
||||
let
|
||||
m = match "=> ([^ ]+) (.+)" v;
|
||||
m2 = match "=> (.*+)" v;
|
||||
m2 = match "=> ([^ ]+)" v;
|
||||
in
|
||||
if m != null then {
|
||||
goPackagePath = elemAt m 0;
|
||||
|
|
Loading…
Reference in a new issue