Skip to content

Commit

Permalink
fix: shellcheck fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tclahr committed Apr 15, 2024
1 parent 1ed4fb2 commit 875ea8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions uac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 875ea8f

Please sign in to comment.