Skip to content
Snippets Groups Projects
Commit d854cf67 authored by kohleman's avatar kohleman
Browse files

installation script:

added support for files which are not in the subversion are no longer get deleted

SVN: 12217
parent e61adae6
No related branches found
No related tags found
No related merge requests found
...@@ -11,8 +11,11 @@ for f in *.sh; do ...@@ -11,8 +11,11 @@ for f in *.sh; do
echo Synchronizing $f... echo Synchronizing $f...
mv $f $TMP mv $f $TMP
wget $SVN/$f wget $SVN/$f
fi if [ $? -ne 0 ]; then
mv $TMP/$f .
fi
fi
done done
chmod 700 *.sh chmod 700 *.sh
rm -fr $TMP rm -fr $TMP
echo SVN update done. echo SVN update done.
\ No newline at end of file
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