
* Allow default params overriding. * Update: docs and action.yaml. * The second contirbution, add my name to authors.md * Correct docs `with.args` example. * Just to rerun the Travis jobs. * chmod 755
11 lines
160 B
Bash
Executable File
11 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ $# -eq 0 ]; then
|
|
# Default (if no args provided).
|
|
sh -c "black . --check --diff"
|
|
else
|
|
# Custom args.
|
|
sh -c "black $*"
|
|
fi
|