Files
oficial/cli/entrypoint
Juan Pablo Vial d4f8804fbb Batch queue
2025-06-30 15:52:28 -04:00

15 lines
201 B
Bash

#!/bin/bash
if [[ $# -gt 0 ]]
then
if [[ "$1" = "bash" || "$1" = "sh" || "$1" = "zsh" || "$1" = "/bin/bash" ]]
then
CMD=$1
shift
$CMD -c "$@"
exit
fi
fi
/code/bin/incoviba "$@"