Skip to content

Commit

Permalink
[Code] fix a minor bug for clone repo
Browse files Browse the repository at this point in the history
  • Loading branch information
mw-ding committed Mar 14, 2019
1 parent eeae014 commit df2d425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/code/server/check_repos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function checkRepos(
if (!fs.existsSync(path)) {
log.info(`can't find ${repo.uri} on local disk, cloning from remote.`);
const payload = {
url: repo.uri,
url: repo.url,
};
await cloneWorker.enqueueJob(payload, {});
}
Expand Down

0 comments on commit df2d425

Please sign in to comment.