Skip to content
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.

Commit

Permalink
ignore warnings by paccheck
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenKelevra authored Jun 5, 2022
1 parent 6d46ffe commit a2fc41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makebackup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ unset start_time end_time
# check all files supplied by packages for changes, and write the changed files to a list
start_time="$(date +%s)"
echo -ne "=> check files managed by pacman for changes..."
paccheck --md5sum --quiet --db-files --noupgrade --backup | awk '{ print $2 }' | sed "s/'//g" > /tmp/duplicacy-backup.changed_files
paccheck --md5sum --quiet --db-files --noupgrade --backup 2>/dev/null | awk '{ print $2 }' | sed "s/'//g" > /tmp/duplicacy-backup.changed_files
end_time="$(date +%s)"
echo " done after $((end_time-start_time)) seconds"
unset start_time end_time
Expand Down

0 comments on commit a2fc41f

Please sign in to comment.