Skip to content

Commit

Permalink
Update buildAllRPIExamples.sh
Browse files Browse the repository at this point in the history
check if category is folder. Readmes causing errors
  • Loading branch information
jvcleave authored Nov 1, 2019
1 parent c21aba1 commit 5d43b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/linux/buildAllRPIExamples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd ${DIR}/../../examples

for category in $(ls -1d *)
do
if [ $category != "addons" ] && [ $category != "ios" ] && [ $category != "android" ]; then
if [ $category != "addons" ] && [ $category != "ios" ] && [ $category != "android" ] && [[ -d $category ]]; then

echo "CHANGED TO CATEGORY >"+$category
cd $category
Expand Down

0 comments on commit 5d43b23

Please sign in to comment.