mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
10 lines
178 B
Bash
Executable File
10 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
commit=`git log | grep "^commit" | wc -l`
|
|
commit=`expr $commit + 1`
|
|
|
|
sed -i -e "s/\$version=.*$/\$version=\"0.1r$commit\";/" bin/monitor.php
|
|
|
|
git commit -a
|
|
|