Merge "Exclude target subdir from source for infra pubs"

This commit is contained in:
Jenkins 2013-12-27 23:05:29 +00:00 committed by Gerrit Code Review
commit 36f4ab1008

@ -11,7 +11,11 @@
# NAME will either be the branch name or the tag name
NAME=`echo $ZUUL_REFNAME | sed 's/refs.tags.//'`
mkdir -p _out/$NAME
mv * _out/$NAME
for FN in * ; do
if [ "_out" != "$FN" ] ; then
mv $FN _out/$NAME/
fi
done
publishers:
- ftp: