From a8c7d1627111a4f1c3dd05b49bd0da1aea1ee778 Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Sat, 25 Mar 2017 11:26:55 +0100 Subject: [PATCH] build test --- czr_pythons_pg/{DESCIRPTION => DESCRIPTION} | 0 make.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename czr_pythons_pg/{DESCIRPTION => DESCRIPTION} (100%) diff --git a/czr_pythons_pg/DESCIRPTION b/czr_pythons_pg/DESCRIPTION similarity index 100% rename from czr_pythons_pg/DESCIRPTION rename to czr_pythons_pg/DESCRIPTION diff --git a/make.py b/make.py index 255d073..6788791 100644 --- a/make.py +++ b/make.py @@ -6,7 +6,8 @@ import os.path if __name__ == '__main__': dirs = [dir for dir in os.listdir('.') if os.path.isdir(dir)] - boxes = [box for box in dirs if os.path.exists(os.path.join(box, 'DESCRIPTION'))] + exi = lambda box, sup: os.path.exists(os.path.join(box, 'build%s.sh' % (sup, ))) + boxes = [box for box in dirs if exi(box, '') or exi(box, '_as_vagrant')] # Generate Gitlab CI file with open('.gitlab-ci.yml', 'wb') as ci: -- GitLab