From 875ea8fd1a9404ffa2bd23c80758bc79676591ee Mon Sep 17 00:00:00 2001 From: Thiago Canozzo Lahr Date: Mon, 15 Apr 2024 08:41:12 -0300 Subject: [PATCH] fix: shellcheck fix --- uac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uac b/uac index e284ee7c..6b27a69c 100755 --- a/uac +++ b/uac @@ -777,10 +777,10 @@ ua_output_file_hash="-" # sort and uniq sort_uniq_file "${TEMP_DATA_DIR}/.output_file.tmp" 2>>"${UAC_STDERR_LOG_FILE}" -# add uac.log to the list of files to be archived/copied within the output file -echo "uac.log" | cat - "${TEMP_DATA_DIR}/.output_file.tmp" >"${TEMP_DATA_DIR}/.output_file.tmp" # add uac.log.stderr to the list of files to be archived/copied within the output file -echo "uac.log.stderr" | cat - "${TEMP_DATA_DIR}/.output_file.tmp" >"${TEMP_DATA_DIR}/.output_file.tmp" +echo "uac.log.stderr" | cat - "${TEMP_DATA_DIR}/.output_file.tmp" >"${TEMP_DATA_DIR}/.temp_output_file.tmp" +# add uac.log to the list of files to be archived/copied within the output file +echo "uac.log" | cat - "${TEMP_DATA_DIR}/.temp_output_file.tmp" >"${TEMP_DATA_DIR}/.output_file.tmp" # create output file if command_exists "tar"; then