Compare commits

...

2 Commits

Author SHA1 Message Date
6593fe7908 artixpkg: fix topic rm 2023-06-13 00:29:06 +02:00
00c6458305 artixpkg: fix team on create; fix topic removal on remove 2023-06-12 21:46:40 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ artixpkg_git_create() {
local pkgbase
local clone=0
local config=0
local TEAM='extra'
local TEAM='world'
# variables
local path

View File

@@ -122,7 +122,8 @@ artixpkg_repo_remove() {
if (( SET_TOPIC )); then
# topics meta
if [[ -n ${GIT_TOKEN} ]]; then
local topic="${SRC}"
local topic="${DEST}"
local gitname=$(get_compliant_name "${pkgbase}")
if ! remove_topic "${gitname}" "${topic}" >/dev/null; then
warning "failed to remove pacman repo topic: ${topic}"
fi