Skip to content

Commit c89fa33

Browse files
committed
fix: Fix the problem of podspec search failure
1 parent b8ca443 commit c89fa33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/zsh
22
# Authoer: Rakuyo
3-
# Update Date: 2022.04.02
3+
# Update Date: 2024.04.25
44

55
project_path=$(cd `dirname $0` ; pwd)
66

@@ -16,7 +16,7 @@ do
1616
version=`echo $line | cut -d = -f 2 | cut -d \' -f 2`
1717
break
1818
fi
19-
done < $(find ./ -name '*.podspec')
19+
done < $(find . -name '*.podspec' -not -path './.build/*')
2020

2121
lintLib(){
2222
pod lib lint $name.podspec --allow-warnings --skip-tests

0 commit comments

Comments
 (0)