@@ -26,35 +26,41 @@ installdep_debian:
2626tidy :
2727 dos2unix ./mysqltuner.pl
2828 perltidy -b ./mysqltuner.pl
29- # git add ./mysqltuner.pl
30- # git commit -m "Indenting mysqltuner at $(shell date --iso=seconds)"
29+ git add ./mysqltuner.pl
30+ git commit -m " Indenting mysqltuner at $( shell date --iso=seconds) "
3131
3232generate_usage :
3333 pod2markdown mysqltuner.pl > USAGE.md
34- # git add ./USAGE.md
35- # git commit -m "Generate USAGE.md at $(shell date --iso=seconds)"
34+ git add ./USAGE.md
35+ git commit -m " Generate USAGE.md at $( shell date --iso=seconds) "
3636
3737generate_cve :
3838 perl ./build/updateCVElist.pl
39- # git add ./vulnerabilities.csv
40- # git commit -m "Generate CVE list at $(shell date --iso=seconds)"
39+ git add ./vulnerabilities.csv
40+ git commit -m " Generate CVE list at $( shell date --iso=seconds) "
4141
4242generate_features :
4343 perl ./build/genFeatures.sh
44- # git add ./FEATURES.md
45- # git commit -m "Generate FEATURES.md at $(shell date --iso=seconds)"
44+ git add ./FEATURES.md
45+ git commit -m " Generate FEATURES.md at $( shell date --iso=seconds) "
4646
4747increment_sub_version :
4848 @echo " Incrementing sub version from $( VERSION) to $( UPDATE_SUB_VERSION) "
4949 sed -i " s/$( VERSION) /$( UPDATE_SUB_VERSION) /" mysqltuner.pl * .md
50+ git add ./* .md ./mysqltuner.pl
51+ git commit -m " Generate $( UPDATE_SUB_VERSION) sub version at $( shell date --iso=seconds) "
5052
5153increment_minor_version :
5254 @echo " Incrementing minor version from $( VERSION) to $( UPDATE_MINOR_VERSION) "
5355 sed -i " s/$( VERSION) /$( UPDATE_MINOR_VERSION) /" mysqltuner.pl * .md
56+ git add ./* .md ./mysqltuner.pl
57+ git commit -m " Generate $( UPDATE_SUB_VERSION) minor version at $( shell date --iso=seconds) "
5458
5559increment_major_version :
5660 @echo " Incrementing major version from $( VERSION) to $( UPDATE_MAJOR_VERSION) "
5761 sed -i " s/$( VERSION) /$( UPDATE_MAJOR_VERSION) /" mysqltuner.pl * .md
62+ git add ./* .md ./mysqltuner.pl
63+ git commit -m " Generate $( UPDATE_SUB_VERSION) major version at $( shell date --iso=seconds) "
5864
5965push :
6066 git push
0 commit comments