Skip to content

Commit

Permalink
fix incorrect command name in docs and error text (#164)
Browse files Browse the repository at this point in the history
in #137 the command has been renamed, however some strings where not
properly updated
  • Loading branch information
RohrerF authored Apr 8, 2024
1 parent 345de3d commit 0a1a673
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/pages/variables/azure-keyvault.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The Authenticated user requires the following Secret permissions:

| Action | Required Permission |
| :------------------ | ------------------- |
| confix reload | `list` |
| confix restore | `list` |
| confix build | `get` |
| confix variable set | `set` |
| confix variable get | `get` |
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public static JsonSchema GetSchema(
{
throw new ExitException(
$"The schema for the project '{project.Name}' could not be found. " +
$"Call 'confix reload' to generate the schema.");
$"Call 'confix restore' to generate the schema.");
}

return schema;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public async Task Should_ReturnEarly_When_NoSchemaFound()
//
var exitException = Assert.IsType<ExitException>(ex);
Assert.Equal(
"The schema for the project '__Default' could not be found. Call 'confix reload' to generate the schema.",
"The schema for the project '__Default' could not be found. Call 'confix restore' to generate the schema.",
exitException.Message);
}

Expand Down

0 comments on commit 0a1a673

Please sign in to comment.