implement makeCleanDirectory()

This commit is contained in:
belliash 2012-01-12 19:53:35 +01:00
부모 c148d80cb1
커밋 b802711643
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

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