Skip to content

Commit cd7cd5f

Browse files
committed
fix(cli): do not announce a server-selected build path on dry runs
1 parent 98f8903 commit cd7cd5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cli-v3/src/commands/deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,8 +1311,8 @@ async function resolveServerBuildPath(
13111311
}
13121312
break;
13131313
case "server":
1314-
if (resolved.buildPath === "depot") {
1315-
logger.debug("Build path depot (server)");
1314+
if (resolved.buildPath === "depot" || options.dryRun) {
1315+
logger.debug(`Build path ${resolved.buildPath} (server)`);
13161316
} else {
13171317
log.info(BUILD_PATH_LABEL[resolved.buildPath]);
13181318
}

0 commit comments

Comments
 (0)