ci: fix up variadic invocation

This commit is contained in:
Travis Cross 2012-05-07 23:45:38 +00:00
parent 5c18656a91
commit bc2783effd
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@ check_input_ver_build $@
eval $(parse_version "$1") eval $(parse_version "$1")
datestamp="$(date +%Y%m%dT%H%M%SZ)" datestamp="$(date +%Y%m%dT%H%M%SZ)"
nightly="n${datestamp}" nightly="n${datestamp}"
build="b$2" build="b${2-0}"
distro=${3:="unstable"} distro="${3-unstable}"
codename=${4:="sid"} codename="${4-sid}"
fver="${ver}~${nightly}~${build}" fver="${ver}~${nightly}~${build}"
fname="freeswitch-$fver" fname="freeswitch-$fver"