From 8d8a957828023be4a605577bc67f722229bf03e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 3 Dec 2017 14:31:32 +0100 Subject: [PATCH] css: save the whole command-line in postprocess.py. --- css/postprocess.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/postprocess.py b/css/postprocess.py index 9ff78106..968d62e1 100755 --- a/css/postprocess.py +++ b/css/postprocess.py @@ -27,6 +27,7 @@ import argparse import re import os +import sys import_rx = re.compile("^@import url\\('(?P[^']+)'\\);$") opening_brace_rx = re.compile("^\\s*:root\s*{\\s*$") @@ -74,7 +75,7 @@ def postprocess(files): FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -""".format(' '.join(files))) +""".format(' '.join(sys.argv[1:]))) # Parse the top-level file with open(files[0]) as f: -- 2.30.2