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

Commit

Permalink
fix: logpath
Browse files Browse the repository at this point in the history
  • Loading branch information
thesephirot authored Sep 10, 2021
1 parent 299fc7c commit 31c0b00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/initialize_ssh.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash

LOGFILE=gopass.log
LOGFILE=/tmp/gopass.log

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

initialize_ssh
initialize_ssh

0 comments on commit 31c0b00

Please sign in to comment.