Build phase message: add missing case

This commit is contained in:
Kenny Lee Sin Cheong 2018-11-01 11:22:59 -04:00
parent 436e8cb760
commit 8805d64eca

View file

@ -81,6 +81,10 @@ export class BuildServiceImpl implements BuildService {
message = 'This build was previously cancelled.';
break;
case 'incomplete':
message = 'This build was not completed.';
break;
default:
throw new Error(`Invalid build phase: ${phase.toString()}`);
}