summaryrefslogtreecommitdiffstats
path: root/community-testing2community
blob: 557b39d2ca97a50d765de91298afe01c94f67910 (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" "community-testing" "community" "i686"
done