Update git ignore list
Adding script to ident, update vulnerabilies list and generate USAGE file
This commit is contained in:
parent
f92a62f37a
commit
5f4da00055
2 changed files with 16 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ build/mysqltuner.spec
|
|||
build/build.log
|
||||
build/cve*
|
||||
build/vulnerabilities*
|
||||
*.bak
|
||||
|
|
15
build/updateStaff.sh
Normal file
15
build/updateStaff.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
(cd ..
|
||||
echo "* GENERATING USAGE FILE"
|
||||
pod2markdown mysqltuner.pl >USAGE.md
|
||||
echo "* TIDYFY SCRIPT"
|
||||
perltidy -b mysqltuner.pl
|
||||
)
|
||||
echo "* Udate CVE list"
|
||||
perl updateCVElist.pl
|
||||
|
||||
git add ../vulnerabilities.csv ../mysqltuner.pl ./USAGE.md
|
||||
git commit -m 'Update Vulnerabilities list
|
||||
Identing mysqltuner
|
||||
Update Usage information'
|
Loading…
Reference in a new issue