mirror of
https://github.com/zulip/zulip.git
synced 2026-07-18 21:04:19 +08:00
With a change to increase the line length to 100 characters by tabbott. Fixes #2665. Signed-off-by: Anders Kaseorg <anders@zulip.com>
9 lines
124 B
Bash
Executable File
9 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
if [ "$1" = "--fix" ]; then
|
|
shift
|
|
exec isort "$@"
|
|
else
|
|
exec isort --check-only --diff "$@"
|
|
fi
|