Browse Source

fix: [postgres] prevent possible edge case depending on content of stdin !minor

If stdin was "-e" for instance, this would have been interpreted.
pull/36/head
Valentin Lab 4 months ago
parent
commit
b634796544
  1. 2
      odoo-tecnativa/actions/load

2
odoo-tecnativa/actions/load

@ -155,7 +155,7 @@ check_input() {
exit 1
fi
{
echo -n "$chars"
printf "%s" "$chars"
cat
}
}

Loading…
Cancel
Save