implement makeCleanDirectory()

Este commit está contenido en:
belliash 2012-01-12 19:53:35 +01:00
padre c148d80cb1
commit b802711643
Se han modificado 1 ficheros con 10 adiciones y 0 borrados

Ver fichero

@ -59,6 +59,16 @@ function makeCoreDirectories() {
return 0
}
#-------------------------------------------------------------------------------
# Creates all components of the specified directories assuming thay are empty
# Parameters: %directory%
#-------------------------------------------------------------------------------
function makeCleanDirectory() {
rm -rf "${@}"
makeDirectory "${@}"
return ${?}
}
#-------------------------------------------------------------------------------
# Creates all components of the specified directories
# Parameters: %directory%