From 334d3df7bdd785543384078e0c61401de510d5fe Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Fri, 6 Nov 2015 13:55:39 +0300 Subject: [PATCH] Shortened temp directory path --- BuildServer/lib/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildServer/lib/builder.js b/BuildServer/lib/builder.js index 57035e0..0455537 100644 --- a/BuildServer/lib/builder.js +++ b/BuildServer/lib/builder.js @@ -36,7 +36,7 @@ var build = function (options, callback) { branch = options.branch, skipGitLoader = options.skipGitLoader, local = options.app.get('gitpath') + "/r/", - tmp = options.app.get('tmpcodepath') + "/" + rev, + tmp = options.app.get('tmpcodepath') + "/" + rev.substr(0, 20), exported = tmp + codePostfix, release = options.app.get('releasepath') + "/" + owner + "/" + reponame + "/" + branch + "/" + rev, statusQueue = async.queue(function (task, callback) {