1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-25 06:06:21 +03:00
vimr/bin/set_new_versions.sh
Tae Won Ha 866540dac4
Include pre-built libintl in the repository
- to eliminate warnings
- libintl.a and libintl.dylib are pre-built for 10.10
- When building neovim we have to pass the libintl location
2017-05-07 13:17:09 +02:00

22 lines
408 B
Bash
Executable File

#!/bin/bash
set -e
IS_SNAPSHOT=$1
MARKETING_VERSION=$2
echo "### Setting versions of VimR"
# bundle version
agvtool bump -all
# marketing version
if [ "${IS_SNAPSHOT}" = true ] ; then
BUNDLE_VERSION=$(agvtool what-version | sed '2q;d' | sed -E 's/ +(.+)/\1/')
MARKETING_VERSION="SNAPSHOT-${BUNDLE_VERSION}"
fi
agvtool new-marketing-version ${MARKETING_VERSION}
echo "### Set versions of VimR"