summaryrefslogtreecommitdiff
path: root/create-repo
diff options
context:
space:
mode:
Diffstat (limited to 'create-repo')
-rwxr-xr-xcreate-repo6
1 files changed, 3 insertions, 3 deletions
diff --git a/create-repo b/create-repo
index 5654078..c729e9c 100755
--- a/create-repo
+++ b/create-repo
@@ -1,8 +1,8 @@
#!/bin/bash
# Creates repository structure
-. "$(dirname "$(readlink -e "$0")")/config"
-. "$(dirname "$(readlink -e "$0")")/db-functions"
+source "$(dirname "$(readlink -e "$0")")/dbscripts.cfg"
+source "$(dirname "$(readlink -e "$0")")/share/db-functions"
if [ $# -eq 0 ]; then
msg "Usage: %s repo1 [repo2 ... repoX]" "${0##*/}"
@@ -18,4 +18,4 @@ for _repo in "$@"; do
done
done
-msg "Don't forget to add them to the PKGREPOS array on %s" "$(dirname "$(readlink -e "$0")")/config"
+msg "Don't forget to add them to the PKGREPOS array on %s" "$(dirname "$(readlink -e "$0")")/dbscripts.cfg"