Skip to content
Snippets Groups Projects
Commit c8ae7abf authored by Christophe Lyon's avatar Christophe Lyon Committed by Christophe Lyon
Browse files

check_GNU_style.sh: Remove temporay file upon exit.

2012-10-02   Christophe Lyon  <christophe.lyon@linaro.org>

       * check_GNU_style.sh: Remove temporay file upon exit.

From-SVN: r191954
parent e9453c6a
No related branches found
No related tags found
No related merge requests found
2012-10-02 Christophe Lyon <christophe.lyon@linaro.org>
* check_GNU_style.sh: Remove temporay file upon exit.
2012-09-26 Joern Rennecke <joern.rennecke@embecosm.com> 2012-09-26 Joern Rennecke <joern.rennecke@embecosm.com>
* contrib-list.mk (LIST): Remove arm-freebsd6, arm-linux, * contrib-list.mk (LIST): Remove arm-freebsd6, arm-linux,
......
...@@ -37,6 +37,10 @@ test $# -eq 0 && usage ...@@ -37,6 +37,10 @@ test $# -eq 0 && usage
tmp=check_GNU_style.tmp tmp=check_GNU_style.tmp
# Remove $tmp on exit and various signals.
trap "rm -f $tmp" 0
trap "rm -f $tmp ; exit 1" 1 2 3 5 9 13 15
# Grep # Grep
g (){ g (){
msg="$1" msg="$1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment