1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/bin/set_new_versions.sh

15 lines
401 B
Bash
Raw Normal View History

2016-10-14 13:15:32 +03:00
#!/bin/bash
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/(.*)-SNAPSHOT-.*/\1-SNAPSHOT-$(date +%Y%m%d.%H%M)/")
fi
agvtool new-marketing-version ${MARKETING_VERSION}
echo "### Set versions of VimR"