summaryrefslogtreecommitdiffstats
path: root/db-repo-remove
diff options
context:
space:
mode:
Diffstat (limited to 'db-repo-remove')
-rwxr-xr-xdb-repo-remove8
1 files changed, 4 insertions, 4 deletions
diff --git a/db-repo-remove b/db-repo-remove
index b01910f..e55cd07 100755
--- a/db-repo-remove
+++ b/db-repo-remove
@@ -4,13 +4,13 @@
. "$(dirname $0)/config"
if [ $# -ne 3 ]; then
- msg "usage: $(basename $0) <pkgname> <repo> <arch>"
+ msg "usage: $(basename $0) <repo> <arch> <pkgname>"
exit 1
fi
-pkgname="$1"
-repo="$2"
-arch="$3"
+repo="$1"
+arch="$2"
+pkgname="$3"
ftppath="$FTP_BASE/$repo/os"