Only remove icon tree if necessary.
This commit is contained in:
parent
f1435ce51f
commit
ea5ee0e7c8
5
setup.py
5
setup.py
@ -35,7 +35,10 @@ BASEDIR = os.path.dirname(os.path.realpath(__file__))
|
|||||||
|
|
||||||
|
|
||||||
icon_path = os.path.join('qutebrowser', 'icons')
|
icon_path = os.path.join('qutebrowser', 'icons')
|
||||||
shutil.rmtree(icon_path)
|
try:
|
||||||
|
shutil.rmtree(icon_path)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
os.mkdir(icon_path)
|
os.mkdir(icon_path)
|
||||||
for fn in glob.glob('icons/*.png'):
|
for fn in glob.glob('icons/*.png'):
|
||||||
shutil.copy(fn, icon_path)
|
shutil.copy(fn, icon_path)
|
||||||
|
Loading…
Reference in New Issue
Block a user