ci: Fix installation of ripgrep for tests

The previous `find` command was grabbing the bash completions, rather
than the executable file. This should fix that.
This commit is contained in:
Ethan P 2023-03-20 23:31:47 -07:00
parent 76906ca014
commit 26111f9cee
No known key found for this signature in database
GPG Key ID: A15E33AC0325A3F5

View File

@ -82,7 +82,7 @@ runs:
"${{ runner.temp }}/dl/"
find "${{ runner.temp }}/dl" \
-type f -iname "rg" \
-type f -path "*/bin/rg" \
-exec mv {} "${{ runner.temp }}/bin/" \;
- name: Set executable permissions