This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/release/datafiles/prvicons_update.py

11 lines
259 B
Python
Executable File

#!/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)