Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 31c0b00

Browse files
authored
fix: logpath
1 parent 299fc7c commit 31c0b00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/initialize_ssh.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env bash
22

3-
LOGFILE=gopass.log
3+
LOGFILE=/tmp/gopass.log
44

55
function initialize_ssh {
66
eval "$(ssh-agent -s)" &>> ${LOGFILE}
77
for SSHFILE in $(ls $HOME/.ssh); do ssh-add -k $HOME/.ssh/${SSHFILE} &>> ${LOGFILE}; done
88
}
99

10-
initialize_ssh
10+
initialize_ssh

0 commit comments

Comments
 (0)