aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorKragen Javier Sitaker <kragen@pobox.com>2008-12-03 23:35:22 -0300
committerKragen Javier Sitaker <kragen@pobox.com>2008-12-03 23:35:22 -0300
commit8f2dac12e13a62198c12d0a76608a4df14e58c8a (patch)
tree82e75a027d86783e6652222a68727e239220fe3d /install
parentadded howto script (diff)
downloaddotXCompose-8f2dac12e13a62198c12d0a76608a4df14e58c8a.tar.gz
dotXCompose-8f2dac12e13a62198c12d0a76608a4df14e58c8a.tar.bz2
dotXCompose-8f2dac12e13a62198c12d0a76608a4df14e58c8a.zip
renamed .ispell_default to .ispell_american
Diffstat (limited to 'install')
-rwxr-xr-xinstall10
1 files changed, 5 insertions, 5 deletions
diff --git a/install b/install
index 73ca930..688d196 100755
--- a/install
+++ b/install
@@ -1,15 +1,15 @@
#!/bin/bash
set -e
-if [ -f ~/.ispell_default ]; then
+if [ -f ~/.ispell_american ]; then
cat <<'EOF' >&2
-You already have a `~/.ispell_default`. Move it out of the way.
+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_default new-words
+ mv ~/.ispell_american new-words
./install
- sort -u dotispell_default new-words -o dotispell_default
+ sort -u dotispell_american new-words -o dotispell_american
git diff
git commit -am 'adding my private words'
@@ -20,4 +20,4 @@ Kragen Javier Sitaker <kragen@canonical.org>
EOF
exit 1
fi
-ln -s "$(pwd)/dotispell_default" ~/.ispell_default
+ln -s "$(pwd)/dotispell_american" ~/.ispell_american