16 lines
303 B
Python
16 lines
303 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from shutil import rmtree
|
||
|
from os import remove, mkdir
|
||
|
|
||
|
confirmation = input('If you really want to delete all releases, type CONFIRM: ')
|
||
|
if confirmation != 'CONFIRM':
|
||
|
print('Cancelled')
|
||
|
exit()
|
||
|
|
||
|
remove('latest.json')
|
||
|
rmtree('releases')
|
||
|
mkdir('releases')
|
||
|
|
||
|
print('Reset complete')
|