2
0
Fork 0

implement makeCleanDirectory()

Dieser Commit ist enthalten in:
belliash 2012-01-12 19:53:35 +01:00
Ursprung c148d80cb1
Commit b802711643
1 geänderte Dateien mit 10 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -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%