]> git.donarmstrong.com Git - bin.git/blob - svnfix
update svnfix for orderbot and bugbot
[bin.git] / svnfix
1 #!/bin/sh
2
3 if [ -e ~/.hide/irssi_config ] && [ -d .irssi ]; then
4     ln -sf ~/.hide/irssi_config ~/.irssi/config;
5 fi;
6
7 if [ -e ~/.hide/todo ]; then
8     ln -sf ~/.hide/todo ~/.todo
9 fi;
10
11 if [ -e ~/.hide/gaim_accounts.xml ] && [ -d .gaim ]; then
12     ln -sf ~/.hide/gaim_accounts.xml ~/.gaim/accounts.xml;
13 fi;
14
15 if [ -e ~/.hide/mail_aliases ]; then
16     ln -sf ~/.hide/mail_aliases ~/.mail_aliases
17 fi;
18
19 for a in bug order; do
20     if [ -e ~/.hide/${a}_bot.conf ]; then
21         ln -sf ~/.hide/${a}_bot.conf ~/.${a}_bot.conf
22     fi;
23 done;