mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
10 lines
197 B
Python
10 lines
197 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
destdir = os.environ.get('DESTDIR', os.sep)
|
||
|
|
||
|
for dirname in sys.argv[1:]:
|
||
|
os.makedirs(os.path.join(destdir, dirname.strip(os.sep)), exist_ok=True)
|