From 9f12d233b124f0b4431bbe279543bc521c10ea86 Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Mon, 30 Apr 2012 19:28:04 +0300 Subject: [PATCH] .cat.sh: Fix the GPG part. --- .cat.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.cat.sh b/.cat.sh index 2fff316c..6a2ef37e 100755 --- a/.cat.sh +++ b/.cat.sh @@ -3,10 +3,11 @@ cat bashrc > ~/.bashrc cat tmux.conf > ~/.tmux.conf cat zshrc > ~/.zshrc -cat gitconfig > ~/.gitconfig # I usually do not want this to be overridden so much. +cat gitconfig > ~/.gitconfig cat vimrc > ~/.vimrc -#gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys A4271AC5 # Run gpg once to get configuration file and keyrings. -cat gpg.conf > ~/.gnupg/gpg.conf # Maybe this shouldn't get replaced so much, since it contains my key ids. +mkdir -p ~/.gnupg +cat gnupg/gpg.conf > ~/.gpg.conf +cat gpg.conf > ~/.gnupg/gpg.conf cat xsessionrc > ~/.xsessionrc exec $SHELL