mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 02:03:01 +02:00
8 lines
168 B
Bash
Executable File
8 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
|