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

remove -C from rsync as it exclude core directories

parent 82efd72a5f48
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@
echo "${YELLOW}INFO ${RESET} - branch_exist=$branch_exist"
# Remove any content inside it
rm -rf ${source_name}/*
rsync -rRLtC --exclude=.hgtags --exclude=.hgignore $(eval echo $odoo_modules $dependencies $other_sources) $source_name
rsync -rRLt --exclude='.hg*' --exclude='.git' $(eval echo $odoo_modules $dependencies $other_sources) $source_name
pushd $source_name
hg addremove
if [[ "x$branch_exist" != "x0" ]];
......
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