From b6347965441ff472fec3eb559a5cb6ad8a85b315 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Sun, 17 Dec 2023 11:30:49 +0100 Subject: [PATCH] fix: [postgres] prevent possible edge case depending on content of stdin !minor If stdin was "-e" for instance, this would have been interpreted. --- odoo-tecnativa/actions/load | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odoo-tecnativa/actions/load b/odoo-tecnativa/actions/load index fb91247..ccad9cd 100755 --- a/odoo-tecnativa/actions/load +++ b/odoo-tecnativa/actions/load @@ -155,7 +155,7 @@ check_input() { exit 1 fi { - echo -n "$chars" + printf "%s" "$chars" cat } }