1
0
Fork 0

(svn r23514) -Fix: squirrel_export.sh failed for svn working copies.

release/1.2
frosch 2011-12-14 19:59:49 +00:00
parent e0974b8632
commit 7f3227cd5c
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ apilc=`pwd | sed "s@/api@@;s@.*/@@"`
# Check if we are in the root directory of the API, as then we generate all APIs # Check if we are in the root directory of the API, as then we generate all APIs
if [ "$apilc" = "script" ]; then if [ "$apilc" = "script" ]; then
for api in `find -type d | cut -b3-`; do for api in `find -type d | cut -b3- | grep -v '\.svn\|/'`; do
if [ -z "$api" ]; then continue; fi if [ -z "$api" ]; then continue; fi
echo "Generating for API '$api' ..." echo "Generating for API '$api' ..."
cd $api cd $api