From 33f5dae3f64a68e38e103d596b36f4807e371fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Fri, 21 Aug 2020 03:04:48 +0200 Subject: [PATCH] leaden_noinstall: call make (to build ui) before executing the app --- leaden_noinstall.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/leaden_noinstall.py b/leaden_noinstall.py index 43e985d..636e175 100755 --- a/leaden_noinstall.py +++ b/leaden_noinstall.py @@ -2,6 +2,10 @@ import sys +from subprocess import call + +call(["make"]) + import leaden.cmdline