|
|
@ -17,6 +17,7 @@ function prepare_upload_filename() {
|
|
|
|
.ci/detect_os_arch_package_format "$package" > /tmp/os_arch_package_format;
|
|
|
|
.ci/detect_os_arch_package_format "$package" > /tmp/os_arch_package_format;
|
|
|
|
source /tmp/os_arch_package_format;
|
|
|
|
source /tmp/os_arch_package_format;
|
|
|
|
detect_release_branch
|
|
|
|
detect_release_branch
|
|
|
|
|
|
|
|
|
|
|
|
detect_revision "$package" "$OS_ARCH"
|
|
|
|
detect_revision "$package" "$OS_ARCH"
|
|
|
|
if [ -n "$REVISION" ]; then
|
|
|
|
if [ -n "$REVISION" ]; then
|
|
|
|
REVISION="_${REVISION}"
|
|
|
|
REVISION="_${REVISION}"
|
|
|
@ -60,6 +61,8 @@ detect_revision() {
|
|
|
|
local package="$1"
|
|
|
|
local package="$1"
|
|
|
|
local arch="$2"
|
|
|
|
local arch="$2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
REVISION=
|
|
|
|
|
|
|
|
|
|
|
|
if ! echo "$package" | grep -q '+'; then
|
|
|
|
if ! echo "$package" | grep -q '+'; then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|