diff --git a/tools/authenticode_check.sh b/tools/authenticode_check.sh index c94682d16831a87e268c79e07f27597a9259d15f..819c9d19c3bce27fb2db28ab8f7631ba4653cb97 100755 --- a/tools/authenticode_check.sh +++ b/tools/authenticode_check.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2017, The Tor Project, Inc. +# Copyright (c) 2019, The Tor Project, Inc. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are @@ -74,6 +74,7 @@ for f in `ls *.exe`; do echo "$f does not have the SHA-256 sum of the unsigned bundle!" BADSIGNED_BUNDLES=`expr $BADSIGNED_BUNDLES + 1` fi + rm $f cd .. fi done diff --git a/tools/marsigning_check.sh b/tools/marsigning_check.sh index 41b3b4d9c5573adecd8e9e5ebc12d686e920caba..0663603150c0e983e90cda20e3c345b338a6d9b7 100755 --- a/tools/marsigning_check.sh +++ b/tools/marsigning_check.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2016, The Tor Project, Inc. +# Copyright (c) 2019, The Tor Project, Inc. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are @@ -85,6 +85,7 @@ for f in `ls *.mar`; do echo "$f does not have the SHA-256 sum of the unsigned MAR file!" BADSIGNED_MARS=`expr $BADSIGNED_MARS + 1` fi + rm $f cd .. fi done