Use ENV['MASTER_KEY'] if defined
parent
579ff101ca
commit
dd9e6312e2
|
@ -15,16 +15,7 @@ class Twik
|
||||||
end
|
end
|
||||||
|
|
||||||
def run
|
def run
|
||||||
masterkey = ask('Master key: ')
|
puts twik.generate(config.tag, config.masterkey)
|
||||||
puts twik.generate(config.tag, masterkey)
|
|
||||||
end
|
|
||||||
|
|
||||||
def ask(prompt)
|
|
||||||
print prompt
|
|
||||||
res = STDIN.noecho(&:gets).chomp
|
|
||||||
puts
|
|
||||||
|
|
||||||
res
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -28,6 +28,18 @@ class Twik
|
||||||
@yaml = YAML.load_file(file.path)
|
@yaml = YAML.load_file(file.path)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def ask(prompt)
|
||||||
|
print prompt
|
||||||
|
res = STDIN.noecho(&:gets).chomp
|
||||||
|
puts
|
||||||
|
|
||||||
|
res
|
||||||
|
end
|
||||||
|
|
||||||
|
def masterkey
|
||||||
|
ENV['MASTER_KEY'] || ask('Master key: ')
|
||||||
|
end
|
||||||
|
|
||||||
def profile
|
def profile
|
||||||
args['profile'] || 'default'
|
args['profile'] || 'default'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue