blob: df80a7f9c8a63cca57082d3cfc2b2136342732ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- localepurge.original 2012-12-02 18:32:35.000000000 +0400
+++ localepurge 2013-01-14 19:31:35.327821252 +0400
@@ -254,7 +254,7 @@
# Calculating and reporting total disk space freed:
if [ "$SHOWFREEDSPACE" = "enabled" ]; then
- let TOTAL=$LOCALETOTAL+$MANTOTAL
+ TOTAL=$(($LOCALETOTAL+$MANTOTAL))
if test $TOTAL -lt 0; then
TOTAL=0
fi
|