summaryrefslogtreecommitdiffstats
path: root/testing2core-any
blob: a0993e86cbb5fa0324e53c1480760c53bc850a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ $# -le 0 ]; then
    echo "usage: $(basename 0) <packagename> [<packagename> [<packagename ...]]"
    exit 0
fi

for pkg in $@; do
    echo "==> Moving package '$pkg'"
    $(dirname $0)/db-move "$pkg" "testing" "core" "any"
done