mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-02 02:51:42 +00:00
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $TRAVIS_OS_NAME != 'osx' ]]; then
|
|
python3.5 -m wpiformat -y 2018 -clang 5.0
|
|
else
|
|
python3 -m wpiformat -y 2018
|
|
fi
|
|
|
|
git --no-pager diff --exit-code HEAD # Ensure formatter made no changes
|