Skip to content

Commit e408664

Browse files
committed
feat(odoo_scripts): remove extraneous 'W' character from uninstall script
- Fixes typo in `docker-odoo-uninstall` script causing syntax error - Removes stray 'W' character that was breaking script execution - Resolves immediate issue preventing successful module uninstallation - Maintains all existing functionality and user feedback features
1 parent 71436fe commit e408664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/odoo_scripts/files/docker-odoo-uninstall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IFS=',' read -ra MODULES <<< "$modules"
5555
for module in "${MODULES[@]}"; do
5656
module=$(echo "$module" | xargs)
5757
[[ -z "$module" ]] && continue
58-
W
58+
5959
echo -e "\033[38;5;214mWarning:\033[0m Removing module '$module' on database '$database' on container '$container'."
6060
docker exec $container /bin/bash -c "
6161
echo \"module = self.env['ir.module.module'].search([('name', '=', '$module')]);

0 commit comments

Comments
 (0)