From d81bcbae13dc8bfd147cec1f1f0592a56c6bc424 Mon Sep 17 00:00:00 2001 From: opi Date: Tue, 14 Feb 2017 14:57:50 +0100 Subject: [PATCH] =?UTF-8?q?[enh]=C2=A0Build=20dev=20app=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- should_i_rebuild.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/should_i_rebuild.sh b/should_i_rebuild.sh index 16fc43bf..70a2841b 100644 --- a/should_i_rebuild.sh +++ b/should_i_rebuild.sh @@ -10,6 +10,7 @@ fi before_official=$(sha256sum official.json) before_community=$(sha256sum community.json) +before_dev=$(sha256sum dev.json) git pull @@ -22,3 +23,8 @@ if [ "$before_community" != "$(sha256sum community.json)" ] then python ./list_builder.py -g $1 community.json fi + +if [ "$before_dev" != "$(sha256sum dev.json)" ] +then + python ./list_builder.py -g $1 dev.json +fi