Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prvicons_update.py « datafiles « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecc466aab72275f4cc03bec5f193a8bd7cccbba0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3

# This script updates icons from the SVG file
import os

BASEDIR = os.path.abspath(os.path.dirname(__file__)) + os.sep

cmd = 'inkscape "%sprvicons.svg" --without-gui --export-png="%sprvicons.png"' % (BASEDIR, BASEDIR)
os.system(cmd)