Shortened temp directory path

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 9 years ago
parent 1e74a43a60
commit 334d3df7bd
  1. 2
      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) {

Loading…
Cancel
Save