8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $(sqldiff ${CMAKE_CURRENT_SOURCE_DIR}/${standard}/expected/${output_filename} ${output_filename}) ]]; then
|
|
exit -1
|
|
else
|
|
exit 0
|
|
fi
|