Skip to content

Commit

Permalink
Fixing project upload link
Browse files Browse the repository at this point in the history
  • Loading branch information
brandenrodgers committed Dec 18, 2024
1 parent b20ec8b commit afb606c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/projects/buildAndDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ type PollTaskStatusFunctionConfig<T extends ProjectTask> = {
accountId: number,
taskName: string,
taskId: number,
deployedBuildId: number
deployedBuildId: number | null
) => void;
};

Expand Down Expand Up @@ -118,7 +118,7 @@ function makePollTaskStatusFunc<T extends ProjectTask>({
) {
const displayId = deployedBuildId || taskId;

if (linkToHubSpot && !silenceLogs && deployedBuildId) {
if (linkToHubSpot && !silenceLogs) {
logger.log(
`\n${linkToHubSpot(accountId, taskName, taskId, deployedBuildId)}\n`
);
Expand Down

0 comments on commit afb606c

Please sign in to comment.