Remove duplicate QUIT signal in trap statement

This commit is contained in:
Denys Havrysh 2016-03-05 12:09:41 +02:00
parent 7cb36114ea
commit f47afeb117

View file

@ -551,7 +551,7 @@ __exit_cleanup() {
# Exit with the "original" exit code, not the trapped code
exit $EXIT_CODE
}
trap "__trap_errors" INT QUIT ABRT QUIT TERM
trap "__trap_errors" INT ABRT QUIT TERM
# Now we're "good" to kill tee
kill -s TERM "$TEE_PID"