Merge pull request #70 from yihuang/fix-regex

fix: Invalid regex on macOS
This commit is contained in:
adisbladis 2022-07-29 22:44:54 +08:00 committed by GitHub
commit d1e95112bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;