Este commit está contenido en:
belliash 2012-01-04 11:44:42 +01:00
padre 91710f3dd2
commit 63c21a5be8
Se han modificado 2 ficheros con 2 adiciones y 2 borrados

2
ezsync
Ver fichero

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

Ver fichero

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