Skip to content
Snippets Groups Projects
Commit 06bd2830 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

Use rsync -C option rather than manually excluding files

keep .hg* for .hgignore and .hgtags
parent fe6dfeed
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,6 @@
if [[ -n $odoo_modules ]];
then
mkdir -p $project_home/odoo_modules
rsync --delete --exclude='.hg*' --exclude='.git*' --links --exclude='*.pyc' -r $(eval echo $odoo_modules) $project_home/odoo_modules
rsync --delete -C --exclude='.hg*' --links --exclude='*.pyc' -r $(eval echo $odoo_modules) $project_home/odoo_modules
fi
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