From 778e374ad9cc9d36e05c0df73cfb81f1637f75da Mon Sep 17 00:00:00 2001 From: Wouter Verhelst Date: Sun, 28 Oct 2018 14:23:47 +0100 Subject: Add missing slash We forgot to add the opening / character, which meant that directories weren't being split up correctly, and that therefore languages weren't being detected. Since that made us miss a spanish build: force translations: spanish --- ci/build-me | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/build-me b/ci/build-me index b87ab7c9612..11977bee312 100755 --- a/ci/build-me +++ b/ci/build-me @@ -26,7 +26,7 @@ open GIT, "git log -p \$CI_COMMIT_BEFORE_SHA..HEAD|diffstat -p1 -l|"; while() { next unless /\//; - my @dirparts = split(\//); + my @dirparts = split(/\//); if($dirparts[0] eq $ENV{CI_JOB_NAME}) { close GIT; exit 0; -- cgit v1.2.3