mirror of https://github.com/zulip/zulip.git
9 lines
124 B
Plaintext
9 lines
124 B
Plaintext
|
#!/bin/sh
|
||
|
set -eu
|
||
|
if [ "$1" = "--fix" ]; then
|
||
|
shift
|
||
|
exec isort "$@"
|
||
|
else
|
||
|
exec isort --check-only --diff "$@"
|
||
|
fi
|