From dfcaa1e1423a59057eb84273b1982d69f31e9be8 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 20:23:50 -0300 Subject: fix variables --- create-repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'create-repo') diff --git a/create-repo b/create-repo index 2ef3ace..2d82db0 100755 --- a/create-repo +++ b/create-repo @@ -12,10 +12,10 @@ fi msg "Creating repos..." for _repo in "$@"; do msg2 "Creating [%s]" "${_repo}" - for _arch in "${ARCHES[@]}"; do + for _arch in "${architectures[@]}"; do mkdir -p "${root_dir}/${_repo}/os/${_arch}" || \ error "Failed creating %s dir" "${_arch}" done done -msg "Don't forget to add them to the PKGREPOS array on %s" "$(dirname "$(readlink -e "$0")")/etc/dbscripts.cfg" +msg "Don't forget to add them to the repositories array on %s" "$(dirname "$(readlink -e "$0")")/etc/dbscripts.cfg" -- cgit v1.2.3-2-g168b