We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9741614 commit 267ef3eCopy full SHA for 267ef3e
src/azure-cli/azure/cli/command_modules/acs/_validators.py
@@ -65,8 +65,8 @@ def validate_ssh_key(namespace):
65
"file share, back up your keys to a safe location",
66
private_key_filepath, public_key_filepath)
67
else:
68
- if (not content or str(content).strip() == "" or
69
- (content == os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub'))):
+ if (not content or str(content).strip() == "" or
+ (content == os.path.join(os.path.expanduser('~'), '.ssh', 'id_rsa.pub'))):
70
namespace.no_ssh_key = True
71
return
72
raise CLIError(
0 commit comments