debian: mirror dpkg-source parameter choice

This commit is contained in:
Travis Cross 2012-05-11 06:23:18 +00:00
parent 8d366f7f98
commit 193512e9ea
1 changed files with 4 additions and 4 deletions

8
debian/util.sh vendored
View File

@ -167,10 +167,10 @@ _create_orig () {
create_orig () {
local xz_level="6"
while getopts 'dZ:' o; do
while getopts 'dz:' o; do
case "$o" in
d) set -vx;;
Z) xz_level="$OPTARG";;
z) xz_level="$OPTARG";;
esac
done
shift $(($OPTIND-1))
@ -180,10 +180,10 @@ create_orig () {
create_dsc () {
. $ddir/../scripts/ci/common.sh
local xz_level="6"
while getopts 'dZ:' o; do
while getopts 'dz:' o; do
case "$o" in
d) set -vx;;
Z) xz_level="$OPTARG";;
z) xz_level="$OPTARG";;
esac
done
shift $(($OPTIND-1))