diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-30 13:58:58 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-04-05 12:10:36 +0200 |
commit | d980c8532918a1908b47d2a5571432520e425102 (patch) | |
tree | 5e179843c965180cd2752bdf2e102c9bd19feb5a /fetch_and_build.sh | |
parent | e0ef47bb046163702addb625d8058b884b1411a9 (diff) |
refactor: port to Go
Diffstat (limited to 'fetch_and_build.sh')
-rwxr-xr-x | fetch_and_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch_and_build.sh b/fetch_and_build.sh index 760b03d..ba1c91c 100755 --- a/fetch_and_build.sh +++ b/fetch_and_build.sh @@ -2,4 +2,4 @@ (cd rust; git checkout master; git pull --ff-only) ./find.sh | grep -oP '(?<=feature = ")([^"]+)' > lib_feats.txt rm -r build/ -./build.py +go run build.go |