scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit 86687b0279684be46dc51add7dbbc0ddcbfd2ac3
parent 68fc344f434b0e1cb7a595808669e08b58601242
Author: dsp <dsp@2f30.org>
Date:   Sat, 19 Oct 2013 12:42:30 +0100

fixed typo in _clean

Diffstat:
Mblackholedns | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/blackholedns b/blackholedns @@ -33,8 +33,9 @@ _unboundize() { } _clean() { - if [[ -e $TMP ]] + if [[ -e $TMP ]]; then rm $TMP + fi exit 0 }