mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 11:36:24 +00:00
Ensure output directory has been created
This commit is contained in:
parent
a5a78f21cd
commit
ef422b4f00
1 changed files with 4 additions and 0 deletions
|
|
@ -74,6 +74,10 @@ if __name__ == '__main__':
|
|||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
# Ensure the 'collected' output directory exists
|
||||
output_dir = os.path.join(here, 'collected')
|
||||
os.makedirs(output_dir, exist_ok=True)
|
||||
|
||||
for item in os.listdir(here):
|
||||
|
||||
# Ignore the output directory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue