Skip to content

Commit

Permalink
script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauddorgans committed Feb 16, 2019
1 parent 2f6beb0 commit 1969a1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/pod_lib_lint.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
for pod in $(find . -name "*.podspec" -type f);do
for pod in $(find . -name "*.podspec" -type f -exec basename {} ';' );do
push=0
if [[ $1 == 'push' ]]; then
push=1
fi
if [[ $pod == './RxFirebase.podspec' ]]; then
if [[ $pod == 'RxFirebase.podspec' ]]; then
continue
fi
if [[ $push == 0 ]]; then

0 comments on commit 1969a1f

Please sign in to comment.