diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-10 03:25:31 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-09-10 03:25:31 +0300 |
commit | 1df699a2dec4de2f01a1a130fda6b1449b107dc4 (patch) | |
tree | 4949bae1d17a6f1ecbabe036cfa2d43fade64948 | |
parent | work around Python 3.4 csv incompatibility (diff) | |
download | vk-scripts-1df699a2dec4de2f01a1a130fda6b1449b107dc4.tar.gz vk-scripts-1df699a2dec4de2f01a1a130fda6b1449b107dc4.zip |
Travis: fix printf usage in trask_status.sh
-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 |