mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +03:00
19 lines
456 B
Bash
Executable File
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"
|