Skip to content

Commit

Permalink
[scripts] fix find warnings in upload_model_to_gist.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
longjon committed Dec 29, 2014
1 parent abd2ea3 commit 150da0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/upload_model_to_gist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ ! -f $DIRNAME/readme.md ]; then
echo " <dirname>/readme.md must exist"
fi
cd $DIRNAME
FILES=`find . -type f -maxdepth 1 ! -name "*.caffemodel*" | xargs echo`
FILES=`find . -maxdepth 1 -type f ! -name "*.caffemodel*" | xargs echo`

# Check for gist tool.
gist -v >/dev/null 2>&1 || { echo >&2 "I require 'gist' but it's not installed. Do 'gem install gist'."; exit 1; }
Expand Down

0 comments on commit 150da0e

Please sign in to comment.