From af5c658be250752fcf5edabfee1105ef312d1bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 14 Jun 2016 20:23:40 +0200 Subject: [PATCH] build: abort if scss doesn't compile (#11353) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bd4ef6d..9f67b4d 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ class compile_scss(Command): continue if filename.startswith('_'): continue - subprocess.call(['sass', '%s/%s:%s/%s' % ( + subprocess.check_call(['sass', '%s/%s:%s/%s' % ( path, filename, path, filename.replace('.scss', '.css'))])