0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(1password): copy password properly in opswd

Closes #12635
This commit is contained in:
Carlo Sala 2024-09-05 20:20:45 +02:00
parent 95579e3ca1
commit 80fa5e1376
No known key found for this signature in database
GPG key ID: DA6FB450C1A4FE9A

View file

@ -27,7 +27,7 @@ function opswd() {
local password local password
# Copy the password to the clipboard # Copy the password to the clipboard
if ! password=$(op item get "$service" --fields password 2>/dev/null); then if ! password=$(op item get "$service" --reveal --fields password 2>/dev/null); then
echo "error: could not obtain password for $service" echo "error: could not obtain password for $service"
return 1 return 1
fi fi