summaryrefslogtreecommitdiffstats
path: root/community-testing2community64
blob: 3f88a4d9ec824c289cdf9a575bf89fe6fef95e78 (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" "x86_64"
done