I am having a small issue, my python script is as following
`python3 assets_downloader.py data/product/BRAND_assets.txt`
where BRAND is predefined in my code, however, the code is not executing and I think it is because it requires data/product path, here is my code below:
const child = spawn("python3", ["assets_downloader.py", `data/product/${b}_assets.txt`], {
cwd: path.resolve(__dirname, ".."),
});
Please advice. Thanks