summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/abs.sh.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/abs.sh.in b/scripts/abs.sh.in
index 5ceb433e..ae825259 100644
--- a/scripts/abs.sh.in
+++ b/scripts/abs.sh.in
@@ -27,7 +27,7 @@
# E_OK : Everything worked :)
# E_MISSING_PROGRAM : A program the script depends on is not installed.
# E_CONFIG_ERROR : Missing/incorrect configuration.
-# E_INVALID_OPTION : User has passed unknow/invalid option to script.
+# E_INVALID_OPTION : User has passed unknown/invalid option to script.
##
# gettext initialization
@@ -135,12 +135,12 @@ elif [ ! -w "$ABSROOT" ]; then
fi
-if [ "$(type -p cvsup)" ]; then
- CVSUP="cvsup"
-elif [ "$(type -p csup)" ]; then
+if [ "$(type -p csup)" ]; then
CVSUP="csup"
+elif [ "$(type -p cvsup)" ]; then
+ CVSUP="cvsup"
else
- error "$(gettext "Missing CVS synchronization utility. Install cvsup or csup.")"
+ error "$(gettext "Missing CVS synchronization utility. Install csup or cvsup.")"
exit 1 # E_MISSING_PROGRAM
fi