Rocket/scripts/bump_version.sh

15 lines
304 B
Bash
Raw Normal View History

2016-12-24 20:41:30 +00:00
#! /usr/bin/env bash
#
# Bumps the version number from <current> to <next> on all libraries.
#
if [ -z ${1} ] || [ -z ${2} ]; then
echo "Usage: $0 <current> <next>"
echo "Example: $0 0.1.1 0.1.2"
exit 1
fi
find . -name "*.toml" | xargs sed -i.bak "s/${1}/${2}/g"
find . -name "*.bak" | xargs rm