Skip to content
Snippets Groups Projects
Commit 848df16f authored by dg's avatar dg
Browse files

plop

git-svn-id: http://svn.net-core.org/repos/t-engine4@6486 51575b47-30f0-44d4-a5cc-537603b46e54
parent e060c515
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,13 @@ touch $fm
for file in `find . -type f`; do
file=`echo $file|sed s@^\./@@`
echo $file
echo "$file" | grep -q "^t-engine-launcher"
if test $? -eq 0; then
echo "* IGNORING: $file"
continue
fi
if test -f "$oldd/$file"; then
cmp -s "$oldd/$file" "$file"
if test $? -ne 0; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment