pkg.sh: Change pkg-release-rebuild comments to imperative case

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-04-15 17:03:36 +00:00
commit 85d49ebcb8

View file

@ -274,7 +274,7 @@ check_release_is_current()
check_update_version() check_update_version()
{ {
local comment="Started version" local comment="Start version"
set -- `getopt 'c:' "$@"` set -- `getopt 'c:' "$@"`
while [ "$1" != -- ] ; do while [ "$1" != -- ] ; do
case "$1" in case "$1" in
@ -580,7 +580,7 @@ upload_pkg()
$SCM add $TOPDIR/HASH || true $SCM add $TOPDIR/HASH || true
echo "+ scheduling rebuild" echo "+ scheduling rebuild"
$SSH -l root $server /opt/packager-server/bin/packager-server schedule-rebuild $SSH -l root $server /opt/packager-server/bin/packager-server schedule-rebuild
scm_commit -m "Released $v@`platform`" $TOPDIR/LAST_RPM_VERSION $TOPDIR/HASH scm_commit -m "Release $v@`platform`" $TOPDIR/LAST_RPM_VERSION $TOPDIR/HASH
if [ "$SCM" = git ]; then if [ "$SCM" = git ]; then
git push || true git push || true
fi fi
@ -1023,7 +1023,7 @@ build)
cmd_build cmd_build
;; ;;
release-reinstall) release-reinstall)
check_update_version -c "Started version" check_update_version -c "Start version"
cmd_build cmd_build
cmd_upload cmd_upload
;; ;;