Skip to content

Commit

Permalink
[patch] fix promptForDir call (#1451)
Browse files Browse the repository at this point in the history
Co-authored-by: Sekhar C Valluri <svalluri@in.ibm.com>
  • Loading branch information
sekharcvalluri and svalluri-ibm authored Jan 29, 2025
1 parent bf20146 commit 52be775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/mas/cli/install/settings/additionalConfigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def podTemplates(self) -> None:
elif podTemplateChoice == 2:
self.setParam("mas_pod_templates_dir", path.join(self.templatesDir, "pod-templates", "best-effort"))
elif podTemplateChoice == 3:
self.promptForDir("Pod templates directory", "mas_pod_templates_dir", mustExist=True)
self.setParam("mas_pod_templates_dir", self.promptForDir("Pod templates directory", mustExist=True))
else:
self.fatalError(f"Invalid selection: {podTemplateChoice}")

Expand Down

0 comments on commit 52be775

Please sign in to comment.