diff options
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/track_status.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/track_status.sh b/.travis/track_status.sh index 44635bf..91be5a3 100755 --- a/.travis/track_status.sh +++ b/.travis/track_status.sh @@ -12,7 +12,7 @@ track_status() { echo "DB file path: $db_path" local rm_aux_files - rm_aux_files="$( printf -- 'rm -f -- %q' "$log_path" "$db_path" )" + rm_aux_files="$( printf -- 'rm -f -- %q %q' "$log_path" "$db_path" )" trap "$rm_aux_files" RETURN |