1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 18:34:58 +03:00
vimr/bin/set_new_versions.sh
2016-10-15 09:38:47 +02:00

19 lines
456 B
Bash
Executable File

#!/bin/bash
IS_SNAPSHOT=$1
MARKETING_VERSION=$2
echo "### Setting versions of VimR"
# bundle version
agvtool bump -all
# marketing version
if [ "${IS_SNAPSHOT}" = true ] ; then
MARKETING_VERSION=$(agvtool what-marketing-version | tail -n 1 | sed -E 's/.*of "(.*)" in.*/\1/' | sed -E "s/^([0-9]+)\.([0-9]+)\.([0-9]+).*/\1.\2.\3-SNAPSHOT-$(date +%Y%m%d.%H%M)/")
fi
agvtool new-marketing-version ${MARKETING_VERSION}
echo "### Set versions of VimR"