Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Add missing error key
Browse files Browse the repository at this point in the history
  • Loading branch information
Edaena Salinas authored and Edaena Salinas committed Apr 24, 2020
1 parent e1926e3 commit 2a3248e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/project/append-variable-group.ts
Expand Up @@ -123,7 +123,10 @@ export const execute = async (
): Promise<void> => {
try {
if (!hasValue(variableGroupName)) {
throw buildError(errorStatusCode.CMD_EXE_ERR);
throw buildError(
errorStatusCode.CMD_EXE_ERR,
"project-append-variable-group-cmd-err-variable-group-missing"
);
}

checkDependencies(projectPath);
Expand Down

0 comments on commit 2a3248e

Please sign in to comment.