Skip to content
Snippets Groups Projects
docker_build_copy 712 B
Newer Older
#!/bin/zsh
# vim: set shiftwidth=4 softtabstop=4:

# Create docker script (copy)

# template version 2.7

# TODO add a way to bypass the value, maybe with a key in the setup.cfg file
here=$(dirname $0)
project_home=$(cd $here && cd .. && echo $PWD)
odoo_modules="$(python -B -c "import ConfigParser ; c = ConfigParser.SafeConfigParser() ; c.read('${project_home}/setup.cfg') ; print (c.has_option('odoo_scripts', 'modules') and c.get('odoo_scripts', 'modules') or '')")"
if [[ -n "$odoo_modules" ]];
    rsync --delete -C --exclude='.hg*' --links --exclude='*.pyc' -r --times $(eval echo "$odoo_modules") $project_home/odoo_modules