build: Fix post-install script indentation

Python best practices say that indentation should be a
multiple of 4.
This commit is contained in:
Georges Basile Stavracas Neto 2018-03-06 22:02:14 -03:00
parent 733184cc21
commit e776111bc0

View file

@ -8,8 +8,8 @@ gsettingsschemadir = os.path.join(sys.argv[1], 'glib-2.0', 'schemas')
icondir = os.path.join(sys.argv[1], 'icons', 'hicolor')
if not os.environ.get('DESTDIR'):
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', gsettingsschemadir])
print('Compiling gsettings schemas...')
subprocess.call(['glib-compile-schemas', gsettingsschemadir])
print('Update icon cache...')
subprocess.call(['gtk-update-icon-cache', '-f', '-t', icondir])
print('Update icon cache...')
subprocess.call(['gtk-update-icon-cache', '-f', '-t', icondir])