We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ba8e3 commit 2f86356Copy full SHA for 2f86356
1 file changed
install.py
@@ -109,8 +109,9 @@ def driver(opts):
109
msg = ('Directory "{}" does not exists; should I create it? [y/N] '
110
''.format(opts.destination_path))
111
create = input(msg).lower().strip() == 'y'
112
+
113
if create:
- os.mkdir(opts.destination_path)
114
+ os.makedirs(opts.destination_path)
115
else:
116
print('Aborting.')
117
exit(1)
0 commit comments