Skip to content

Commit

Permalink
fix: wrong option for socat
Browse files Browse the repository at this point in the history
  • Loading branch information
tmatz committed Nov 7, 2023
1 parent 2a93c36 commit 7606722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ x"$PINENTRY_VSCODE_SOCKET" = x ]; then
echo "PINENTRY_VSCODE_SOCKET environment variable is not set" >&2
exit 1
fi
exec socat stdin "$PINENTRY_VSCODE_SOCKET"
exec socat stdio "$PINENTRY_VSCODE_SOCKET"
```

```bash
Expand Down
2 changes: 1 addition & 1 deletion cmd/pinentry-vscode
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if [ x"$PINENTRY_VSCODE_SOCKET" = x ]; then
echo "PINENTRY_VSCODE_SOCKET environment variable is not set" >&2
exit 1
fi
exec socat stdin "$PINENTRY_VSCODE_SOCKET"
exec socat stdio "$PINENTRY_VSCODE_SOCKET"

0 comments on commit 7606722

Please sign in to comment.