Fix base_dir detection

It went to parent dir, instead of base

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2022-11-15 20:04:56 +05:30
parent 9bda6d6f43
commit 23cc55124e
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5

View file

@ -16,7 +16,7 @@ out_dir = os.environ.get("OUT_DIR")
# Find absolute path of current directory
cwd = os.getcwd()
path = Path(cwd)
base_dir = str(path.parent.absolute())
base_dir = str(path)
current_time = str(int(time()))
# Clone our content