Improved long file names support

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 10 years ago
parent 91284c36e6
commit c8e87dc97f
  1. 2
      BuildServer/lib/builder.js
  2. 2
      BuildServer/lib/git/loader.js

@ -32,7 +32,7 @@ var build = function (options, callback) {
rev = options.rev,
branch = options.branch,
skipGitLoader = options.skipGitLoader,
local = options.app.get('gitpath') + "/" + owner + "/" + reponame + ".git",
local = options.app.get('gitpath') + "/r/",
tmp = options.app.get('tmpcodepath') + "/" + rev,
exported = tmp + "/code",
release = options.app.get('releasepath') + "/" + owner + "/" + reponame + "/" + branch + "/" + rev,

@ -41,6 +41,8 @@ module.exports = function (options, globalCallback) {
return globalCallback(err);
}
console.log("Cloned %s to %s", url, path);
repo.getCommit(options.hash, function (err, commit) {
if (err) {
return globalCallback(err);

Loading…
Cancel
Save