From b88b50a3b71c34c2c2977d038f97e019c82da9eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20E=2E=20G=C3=B3mez?= Date: Sun, 12 Sep 2021 18:27:17 -0500 Subject: [PATCH] [FIX] Stops using rejected list for special repo --- install_odoo_code.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install_odoo_code.sh b/install_odoo_code.sh index 7b7b8ed..bf6f971 100755 --- a/install_odoo_code.sh +++ b/install_odoo_code.sh @@ -86,8 +86,7 @@ cp_special () echo "(selected modules)" echo " …from $SRC to $DEST" echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" - rsync $OPTIONS --exclude-from=rejected_vendor_modules.txt \ - $SRC $DEST + rsync $OPTIONS $SRC $DEST } cp_custom ()