forked from mirrors/gomod2nix
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:
|
(_: v:
|
||||||
let
|
let
|
||||||
m = match "=> ([^ ]+) (.+)" v;
|
m = match "=> ([^ ]+) (.+)" v;
|
||||||
m2 = match "=> (.*+)" v;
|
m2 = match "=> ([^ ]+)" v;
|
||||||
in
|
in
|
||||||
if m != null then {
|
if m != null then {
|
||||||
goPackagePath = elemAt m 0;
|
goPackagePath = elemAt m 0;
|
||||||
|
|
Loading…
Reference in a new issue