mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
16 lines
219 B
Bash
Executable file
16 lines
219 B
Bash
Executable file
#!/bin/bash
|
|
|
|
FORMAT_CMD="indent -linux -l80 -i2 -nut"
|
|
FILE=$1
|
|
TMP=$(mktemp)
|
|
|
|
$FORMAT_CMD $FILE -o $TMP
|
|
|
|
diff $FILE $TMP > /dev/null
|
|
#ret=$?
|
|
#
|
|
#if [[ $ret -eq 0 ]]; then
|
|
# echo "passed."
|
|
#else
|
|
# echo "failed."
|
|
#fi
|