Skip to content

Commit

Permalink
fix: add -type f
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Aug 13, 2023
1 parent 64b1af6 commit 34d77cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Cache native libraries
- name: Concat native library source files
run: |
find WORKSPACE build.py mediapipe_api/ third_party/ | sort | xargs cat > /tmp/cache_key.txt
find WORKSPACE build.py mediapipe_api/ third_party/ -type f | sort | xargs cat > /tmp/cache_key.txt
- name: Cache native libraries
id: cache-native-libs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Cache native libraries
- name: Concat native library source files
run: |
find WORKSPACE build.py mediapipe_api/ third_party/ | sort | xargs cat > /tmp/cache_key.txt
find WORKSPACE build.py mediapipe_api/ third_party/ -type f | sort | xargs cat > /tmp/cache_key.txt
- name: Cache native libraries
id: cache-native-libs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Cache built libraries
- name: Concat native library source files
run: |
find WORKSPACE build.py mediapipe_api/ third_party/ | sort | xargs cat > cache_key.txt
find WORKSPACE build.py mediapipe_api/ third_party/ -type f | sort | xargs cat > cache_key.txt
shell: cmd

- name: Cache native libraries
Expand Down

0 comments on commit 34d77cd

Please sign in to comment.