Applied abspath to the output path to make is cleaner.
This commit is contained in:
parent
25730bce39
commit
b48998bb86
|
|
@ -270,7 +270,7 @@ def preflight_checks(skip_pre):
|
|||
|
||||
def get_output_dir(o_dir):
|
||||
# outdir is a combination of the config and output
|
||||
outdir = os.path.join(GS.out_dir, o_dir)
|
||||
outdir = os.path.abspath(os.path.join(GS.out_dir, o_dir))
|
||||
# Create directory if needed
|
||||
logger.debug("Output destination: {}".format(outdir))
|
||||
if not os.path.exists(outdir):
|
||||
|
|
|
|||
Loading…
Reference in New Issue