whew! docs finished. 3.00 beta is DONE!

This commit is contained in:
2016-12-30 19:57:34 -05:00
parent 17078f3d1d
commit 32638dbdff
16 changed files with 284 additions and 253 deletions

View File

@@ -13,14 +13,14 @@ import host # bdisk.host
import bGPG # bdisk.bGPG
def dirChk(config_dict):
def dirChk(conf):
# Make dirs if they don't exist
for d in ('archboot', 'isodir', 'mountpt', 'srcdir', 'prepdir'):
os.makedirs(config_dict['build'][d], exist_ok = True)
os.makedirs(conf['build'][d], exist_ok = True)
# Make dirs for sync staging if we need to
for x in ('http', 'tftp'):
if config_dict['sync'][x]:
os.makedirs(config_dict[x]['path'], exist_ok = True)
if conf['sync'][x]:
os.makedirs(conf[x]['path'], exist_ok = True)
def downloadTarball(conf):
build = conf['build']