1
0

fixed bug filling up /tmp

This commit is contained in:
2018-05-18 14:05:55 +02:00
parent fc17a2d1ae
commit 4b6990649d

View File

@@ -62,7 +62,7 @@ UNPROXIED_FILE="$(mktemp)"
# Remove the temporary files if they already exist
#
if [ -e $UNPROXIED_FILE ]; then rm $PROXIED_FILE; fi
if [ -e $UNPROXIED_FILE ]; then rm $UNPROXIED_FILE; fi
if [ -e $PROXIED_FILE ]; then rm $PROXIED_FILE; fi
# Get the content directly
@@ -103,7 +103,7 @@ fi
if [ -e $UNPROXIED_FILE ]; then rm $PROXIED_FILE; fi
if [ -e $UNPROXIED_FILE ]; then rm $UNPROXIED_FILE; fi
if [ -e $PROXIED_FILE ]; then rm $PROXIED_FILE; fi
exit $ERROR_CODE;