#!/bin/bash -x

echo $0
#echo $*
DIST=$1
shift

for file in $* ; do 
    echo $file ; 
    reprepro -V includedsc $DIST $file ; 
    echo "Press enter to continue" ; 
    read enter ; 
done
