File tree 1 file changed +9
-9
lines changed
packages/cli-v3/src/commands
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -345,8 +345,7 @@ async function _deployCommand(dir: string, options: DeployCommandOptions) {
345
345
) ;
346
346
} else {
347
347
outro (
348
- `Version ${ version } deployed with ${ taskCount } detected task${
349
- taskCount === 1 ? "" : "s"
348
+ `Version ${ version } deployed with ${ taskCount } detected task${ taskCount === 1 ? "" : "s"
350
349
} ${ deploymentLink } `
351
350
) ;
352
351
}
@@ -510,14 +509,14 @@ type BuildAndPushImageOptions = {
510
509
511
510
type BuildAndPushImageResults =
512
511
| {
513
- ok : true ;
514
- image : string ;
515
- digest ?: string ;
516
- }
512
+ ok : true ;
513
+ image : string ;
514
+ digest ?: string ;
515
+ }
517
516
| {
518
- ok : false ;
519
- error : string ;
520
- } ;
517
+ ok : false ;
518
+ error : string ;
519
+ } ;
521
520
522
521
async function buildAndPushImage (
523
522
options : BuildAndPushImageOptions
@@ -579,6 +578,7 @@ async function buildAndPushImage(
579
578
DEPOT_TOKEN : options . buildToken ,
580
579
DEPOT_PROJECT_ID : options . buildProjectId ,
581
580
DEPOT_NO_SUMMARY_LINK : "1" ,
581
+ DEPOT_NO_UPDATE_NOTIFIER : "1" ,
582
582
DOCKER_CONFIG : dockerConfigDir ,
583
583
} ,
584
584
} ) ;
You can’t perform that action at this time.
0 commit comments