git-svn-id: http://svg-edit.googlecode.com/svn/trunk@468 eee81c28-f429-11dd-99c0-75d572ba1ddd
9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/sh
|
|
DST="content/editor"
|
|
if [ -e "${DST}" ]; then
|
|
rm -rf "${DST}"
|
|
fi
|
|
cp -R ../editor content/
|
|
SVNS=`find content/editor -name '.svn'`
|
|
rm -rf ${SVNS}
|