summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-03-06 22:02:14 -0300
committerGeorges Basile Stavracas Neto <georges.stavracas@gmail.com>2018-03-06 22:02:14 -0300
commite776111bc0b309df9aa62526645ad844e3ebbbcb (patch)
treec1f8f8248d5422fd3d0a3cbc75ff39e41e6908eb
parent733184cc212fa7f2aa67e63e9ccd395f214508a1 (diff)
downloadgnome-control-center-e776111bc0b309df9aa62526645ad844e3ebbbcb.tar.gz
build: Fix post-install script indentation
Python best practices say that indentation should be a multiple of 4.
-rw-r--r--meson_post_install.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_post_install.py b/meson_post_install.py
index 5c72c482e..f9119e1a7 100644
--- a/meson_post_install.py
+++ b/meson_post_install.py
@@ -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])