Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed May 2, 2024
1 parent b1365d1 commit 9d4ffdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/system-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
for dir in /usr/lib /usr/lib64; do \
for file in $(find $dir -type f -name "*.so.*"); do \
if ! expr "$file" : ".*\.hmac" >/dev/null 2>&1; then \
if [[ $f =~ "libclang-cpp.so" ]]; then continue; fi\
if [[ $f =~ "libclang-cpp.so" ]]; then continue; fi;\
echo $file; \
./simpleParser $file; \
fi \
Expand Down

0 comments on commit 9d4ffdc

Please sign in to comment.