Applied abspath to the output path to make is cleaner.

This commit is contained in:
Salvador E. Tropea 2020-07-02 23:29:53 -03:00
parent 25730bce39
commit b48998bb86
1 changed files with 1 additions and 1 deletions

View File

@ -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):