diff options
author | Erich Eckner <git@eckner.net> | 2019-01-17 15:24:40 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-01-17 15:24:40 +0100 |
commit | c9f55c95cb382e22c41a310c1005e3de43379ae9 (patch) | |
tree | 38210b816af5645dad7fad10b1de6a32fe89c76b /bin/cleanup | |
parent | 294c66ccc56ee6200b288585833cae1d1bfc3ea8 (diff) | |
download | builder-c9f55c95cb382e22c41a310c1005e3de43379ae9.tar.xz |
style: WHERE,ON,FROM,SELECT,JOIN should be on beginning of source lines
Diffstat (limited to 'bin/cleanup')
-rwxr-xr-x | bin/cleanup | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/cleanup b/bin/cleanup index 56d88cb..64f0689 100755 --- a/bin/cleanup +++ b/bin/cleanup @@ -24,7 +24,10 @@ fi { find "${build_log_directory}/error" -maxdepth 1 -type f -printf 'file %f\n' # shellcheck disable=SC2016 - printf 'SELECT "mysql",`failed_builds`.`log_file` FROM `failed_builds`;\n' | \ + { + printf 'SELECT "mysql",`failed_builds`.`log_file`' + printf ' FROM `failed_builds`;\n' + } | \ mysql_run_query | \ tr '\t' ' ' } | \ |