|
|
@ -83,6 +83,16 @@ function generateDigests() { |
|
|
|
return 0 |
|
|
|
} |
|
|
|
|
|
|
|
#------------------------------------------------------------------------------- |
|
|
|
# Creates all components of the specified directories assuming thay are empty |
|
|
|
# Parameters: %directory% |
|
|
|
#------------------------------------------------------------------------------- |
|
|
|
function makeCleanDirectory() { |
|
|
|
rm -rf "${@}" |
|
|
|
makeDirectory "${@}" |
|
|
|
return ${?} |
|
|
|
} |
|
|
|
|
|
|
|
#------------------------------------------------------------------------------- |
|
|
|
# Creates all 'core' directories necessary for EzBuild to operate |
|
|
|
#------------------------------------------------------------------------------- |
|
|
@ -95,16 +105,6 @@ 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% |
|
|
|