mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 20:29:10 +00:00
18 lines
525 B
Bash
18 lines
525 B
Bash
|
function increment_version() {
|
||
|
local v=$1
|
||
|
if [ -z $2 ]; then
|
||
|
local rgx='^((?:[0-9]+\.)*)([0-9]+)($)'
|
||
|
else
|
||
|
local rgx='^((?:[0-9]+\.){'$(($2-1))'})([0-9]+)(\.|$)'
|
||
|
for (( p=`grep -o "\."<<<".$v"|wc -l`; p<$2; p++)); do
|
||
|
v+=.0; done; fi
|
||
|
val=`echo -e "$v" | perl -pe 's/^.*'$rgx'.*$/$2/'`
|
||
|
echo "$v" | perl -pe s/$rgx.*$'/${1}'`printf %0${#val}s $(($val+1))`/
|
||
|
}
|
||
|
|
||
|
function get_current_version() {
|
||
|
current_version=`cat PKGBUILD.git | grep pkgver | head -n 1 | cut -d '=' -f 2`
|
||
|
|
||
|
printf current_version
|
||
|
}
|