15 lines
501 B
Bash
Executable file
15 lines
501 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
###################################################################################################
|
|
|
|
source "$(dirname "$BASH_SOURCE")/impl/common.sh"
|
|
source "$(dirname "$BASH_SOURCE")/impl/cmake-format.sh"
|
|
|
|
###################################################################################################
|
|
|
|
does_cmake_format_exist
|
|
if [[ $? == 0 ]]; then
|
|
cmake_format_do
|
|
fi
|
|
|
|
###################################################################################################
|