From 13b98e9182bad88e91e2a6d663e79499cf7263e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?coadde=20=5BM=C3=A1rcio=20Alexandre=20Silva=20Delgado=5D?= Date: Wed, 23 Sep 2015 19:49:47 -0300 Subject: fix sources --- create-repo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'create-repo') 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" -- cgit v1.2.3-2-g168b