Files
qcma/version_bump.sh
2016-11-21 12:22:34 -04:00

8 lines
264 B
Bash
Executable File

#!/bin/sh
[ $# -eq 0 ] && { echo "Usage: $0 <version>"; exit 1; }
sed -i "s/%define _version.*/%define _version $1/" buildscripts/rpmbuild/qcma.spec
sed -i "s/VERSION = .*/VERSION = $1/" config.pri
echo "Don't forget to update the changelog and nsis script"