aboutsummaryrefslogtreecommitdiff
path: root/install
blob: 688d196670d6fc476b5c87e7648a23a6f6735b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash 
set -e
if [ -f ~/.ispell_american ]; then
cat <<'EOF' >&2
You already have a `~/.ispell_american`.  Move it out of the way.
 
You may want to merge it into this list.  To do so, I'm pretty sure you can do
this:
 
    mv ~/.ispell_american new-words
    ./install
    sort -u dotispell_american new-words -o dotispell_american
    git diff
    git commit -am 'adding my private words'
 
Let me know if that doesn't work out.
 
Kragen Javier Sitaker <kragen@canonical.org>
 
EOF
exit 1
fi
ln -s "$(pwd)/dotispell_american" ~/.ispell_american