Merge remote-tracking branch 'origin/feature/cierres' into feature/cierres

This commit is contained in:
Juan Pablo Vial
2025-07-15 19:07:03 -04:00
41 changed files with 1215 additions and 427 deletions

View File

@ -6,8 +6,13 @@ then
then
CMD=$1
shift
$CMD -c "$@"
exit
if [[ $# -gt 0 ]]
then
$CMD -c "$@"
exit 0
fi
$CMD
exit 0
fi
fi