implement makeCoreDirectories()

This commit is contained in:
belliash 2012-01-05 19:21:44 +01:00
rodzic c7a348ab76
commit f56001d87a
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -47,6 +47,18 @@ function download() {
return ${RESULT}
}
#-------------------------------------------------------------------------------
# Creates all 'core' directories necessary for EzBuild to operate
#-------------------------------------------------------------------------------
function makeCoreDirectories() {
local DIRS="${BINDIR} ${BUILDDIR} ${LOGFILE%/*} ${OVERLAYSDIR} \
${PACKAGESDIR} ${PORTAGESDIR} ${TEMPDIR} ${TRASHDIR}"
for DIR in ${DIRS}; do
makeDirectory ${DIR} || return 1
done
return 0
}
#-------------------------------------------------------------------------------
# Creates all components of the specified directories
# Parameters: %directory%