summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-03-31 17:06:38 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-03-31 17:06:38 +0200
commit04fc00fcdff9ed3302565fa4b657a5be29f7544a (patch)
tree0390f593912cbd619c1e0788c860a03257287942 /build
parent57020a0c3633639eff943976cf1cc978efbb344c (diff)
downloadnextcloud-server-04fc00fcdff9ed3302565fa4b657a5be29f7544a.tar.gz
nextcloud-server-04fc00fcdff9ed3302565fa4b657a5be29f7544a.zip
mergejs should print a newline between imports
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'build')
-rw-r--r--build/mergejs.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/build/mergejs.php b/build/mergejs.php
index 5ffca9d496f..85820c19795 100644
--- a/build/mergejs.php
+++ b/build/mergejs.php
@@ -31,5 +31,6 @@ $vendors = $data['vendor'];
$vendorjs = fopen(__DIR__.'/../core/vendor/core.js', 'w');
foreach($vendors as $vendor) {
fwrite($vendorjs, file_get_contents(__DIR__.'/../core/vendor/'.$vendor));
+ fwrite($vendorjs, PHP_EOL);
}
fclose($vendorjs);