mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
10 lines
270 B
Bash
Executable File
10 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export PATH="$PATH:/opt/homebrew/bin"
|
|
|
|
if ! swiftformat --lint . > /dev/null 2>&1
|
|
then
|
|
echo "pre-commit: Commit aborted due to SwiftFormat warnings. Please check the automatically generated fixes and try again"
|
|
swiftformat . > /dev/null 2>&1
|
|
exit 1
|
|
fi |