mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-09-02 14:43:22 +02:00
7 lines
168 B
Bash
Executable file
7 lines
168 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
if which black; then
|
|
black --skip-string-normalization --line-length 100 --check .
|
|
else
|
|
echo "Skipping black due to not being installed."
|
|
fi
|