black/action/entrypoint.sh
2021-05-06 12:21:13 -07:00

10 lines
226 B
Bash
Executable File

#!/bin/bash -e
if [ -n "$INPUT_BLACK_ARGS" ]; then
echo '::warning::Input `with.black_args` is deprecated. Use `with.options` and `with.src` instead.'
black $INPUT_BLACK_ARGS
exit $?
fi
black $INPUT_OPTIONS $INPUT_SRC