Skip to content

Commit

Permalink
Merge pull request #250 from zowe/skurnevich-patch-1
Browse files Browse the repository at this point in the history
Fixed a typo found during the squad meeting
  • Loading branch information
skurnevich authored Aug 30, 2024
2 parents a8017a6 + a386c71 commit b02c5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/stages/Planning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ const Planning = () => {
}
}).finally(() => {
// TODO: Make it more smart, add these checks to the planning validation details and verify the input fields one by one with a status icon.
if (localYaml?.zowe?.logDirectory.startsWith(localYaml?.zowe?.runtimeDirectoryy) ||
if (localYaml?.zowe?.logDirectory.startsWith(localYaml?.zowe?.runtimeDirectory) ||
localYaml?.zowe?.workspaceDirectory.startsWith(localYaml?.zowe?.runtimeDirectory) ||
localYaml?.zowe?.extensionDirectory.startsWith(localYaml?.zowe?.runtimeDirectory)) {
alertEmitter.emit('showAlert', `Some instance locations (workspace, logs or extensions) are defined inside the runtime directory ${localYaml?.zowe?.runtimeDirectory}. It is not recommended as the runtime directory ment to be read-only.`, 'warning', 20000);
Expand Down

0 comments on commit b02c5a4

Please sign in to comment.