mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-06 12:45:57 +01:00
push: prompt user/pass lowercase
Signed-off-by: Antonio Murdaca <runcom@redhat.com> Closes: #783 Approved by: rhatdan
This commit is contained in:
committed by
Atomic Bot
parent
1db4288aa9
commit
127d5a084d
@@ -92,10 +92,10 @@ class Push(Atomic):
|
||||
def push(self):
|
||||
def prompt():
|
||||
if not self.args.username:
|
||||
self.args.username = util.input("Registry Username: ")
|
||||
self.args.username = util.input("Registry username: ")
|
||||
|
||||
if not self.args.password:
|
||||
self.args.password = getpass.getpass("Registry Password: ")
|
||||
self.args.password = getpass.getpass("Registry password: ")
|
||||
|
||||
self.ping()
|
||||
if self.args.debug:
|
||||
|
||||
Reference in New Issue
Block a user