aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorWouter Verhelst <w@uter.be>2018-10-28 14:23:47 +0100
committerWouter Verhelst <w@uter.be>2018-10-28 14:26:24 +0100
commit778e374ad9cc9d36e05c0df73cfb81f1637f75da (patch)
tree4b35f39719f96f20278cd97f0790d2c391db4ae4 /ci
parentef231ba056d06347cf8578e7695ce73707ad50b0 (diff)
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
Diffstat (limited to 'ci')
-rwxr-xr-xci/build-me2
1 files changed, 1 insertions, 1 deletions
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(<GIT>) {
next unless /\//;
- my @dirparts = split(\//);
+ my @dirparts = split(/\//);
if($dirparts[0] eq $ENV{CI_JOB_NAME}) {
close GIT;
exit 0;

© 2014-2024 Faster IT GmbH | imprint | privacy policy