Skip to content

Commit

Permalink
Fix dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
adikhoff committed Oct 25, 2024
1 parent eec4ec6 commit 786844e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ BUILD_DIR="html/en/$GIT_BRANCH"
echo "###############################"
git config --list

echo $BUILD_SSH_KEY > ~/.ssh/id_rsa
WORK_DIR=`pwd`

cat ~/.ssh/id_rsa
echo $BUILD_SSH_KEY > $WORK_DIR/id_rsa

git config core.sshCommand 'ssh -i ~/.ssh/id_rsa' #specific private key
cat $WORK_DIR/id_rsa

git config core.sshCommand 'ssh -i $WORK_DIR/id_rsa' #specific private key


mkdir -p $REPORT_DIR
Expand Down

0 comments on commit 786844e

Please sign in to comment.