This commit is contained in:
belliash 2012-01-04 11:44:42 +01:00
förälder 91710f3dd2
incheckning 63c21a5be8
2 ändrade filer med 2 tillägg och 2 borttagningar

2
ezsync
Visa fil

@ -21,7 +21,7 @@ until [[ -z "${1}" ]]; do
case "${1}" in
-c|--cleanlog)
printInfo "Clearing log files..."
cleanLogs
cleanLog
;;
-h|--help)
showEzsyncUsage

Visa fil

@ -6,7 +6,7 @@
#-------------------------------------------------------------------------------
# Completely removes log file
#-------------------------------------------------------------------------------
function cleanLogs() {
function cleanLog() {
rm -rf ${LOGFILE} &> /dev/null
}