diff options
Diffstat (limited to 'create-repo')
-rwxr-xr-x | create-repo | 4 |
1 files changed, 2 insertions, 2 deletions
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" |