mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-12 23:37:38 +02:00
15 lines
219 B
Bash
Executable file
15 lines
219 B
Bash
Executable file
#!/bin/bash
|
|
|
|
FORMAT_CMD="indent -linux -l80 -i2 -nut"
|
|
echo $1
|
|
|
|
$FORMAT_CMD $1 -o $1.format-test
|
|
|
|
diff $1 $1.format-test > /dev/null
|
|
#ret=$?
|
|
#
|
|
#if [[ $ret -eq 0 ]]; then
|
|
# echo "passed."
|
|
#else
|
|
# echo "failed."
|
|
#fi
|