Skip to content
Snippets Groups Projects
Verified Commit f6effc07 authored by Levente Polyak's avatar Levente Polyak :rocket:
Browse files

feat(db-remove): add compat mode for removed arch positional

This gives a more fluent migration phase which does not forcefully
require a coordinated release with devtools.
parent 72222000
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,10 @@ fi
repo="$1"
pkgbases=("${@:2}")
# TODO: Temporary compatibility mode for more fluent rollout
if [[ "$2" == any ]]; then
pkgbases=("${@:3}")
fi
# filter out duplicates
mapfile -t pkgbases < <(printf '%s\n' "${pkgbases[@]}" | sort --unique)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment