td 0.10.42 → 0.10.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +5 -0
- data/lib/td/command/user.rb +2 -2
- data/lib/td/version.rb +1 -1
- metadata +1 -1
data/ChangeLog
CHANGED
data/lib/td/command/user.rb
CHANGED
@@ -186,7 +186,7 @@ module Command
|
|
186
186
|
3.times do
|
187
187
|
begin
|
188
188
|
system "stty -echo" # TODO termios
|
189
|
-
print "
|
189
|
+
print "New password (typing will be hidden): "
|
190
190
|
password = STDIN.gets || ""
|
191
191
|
password = password[0..-2] # strip \n
|
192
192
|
rescue Interrupt
|
@@ -204,7 +204,7 @@ module Command
|
|
204
204
|
|
205
205
|
begin
|
206
206
|
system "stty -echo" # TODO termios
|
207
|
-
print "Retype password: "
|
207
|
+
print "Retype new password: "
|
208
208
|
password2 = STDIN.gets || ""
|
209
209
|
password2 = password2[0..-2] # strip \n
|
210
210
|
rescue Interrupt
|
data/lib/td/version.rb
CHANGED