diff --git a/src/commands/src/shared/next-gen-deploy.ts b/src/commands/src/shared/next-gen-deploy.ts index dd82a385a..61ea7c9f1 100644 --- a/src/commands/src/shared/next-gen-deploy.ts +++ b/src/commands/src/shared/next-gen-deploy.ts @@ -62,7 +62,7 @@ export async function nextGenDeploy({ } ); const output = `COMMAND: yes | mut-publish public ${bucket} --prefix=${mutPrefix} --deploy --deployed-url-prefix=${url} --json --all-subdirectories --dry-run - \n${outputText} \n ${errorText} \n Hosted at ${url}/${mutPrefix} + \n${outputText} \n ${errorText} \n Hosted at ${url}${mutPrefix} `; console.log(output); diff --git a/src/job/jobHandler.ts b/src/job/jobHandler.ts index a5122dc98..24a153095 100644 --- a/src/job/jobHandler.ts +++ b/src/job/jobHandler.ts @@ -550,10 +550,14 @@ export abstract class JobHandler { await this.cloneRepo(this._config.get('repo_dir')); this._logger.save(job._id, 'Cloned Repo'); - await this.commitCheck(); + this._logger.save(job._id, 'Checked Commit'); await this.pullRepo(); + + this._logger.save(job._id, 'Next gen build'); + await this.prepNextGenBuild(); + this._logger.save(job._id, 'Pulled Repo'); await this.setEnvironmentVariables(); this.logger.save(job._id, 'Prepared Environment variables');