mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
Removing old shutils script and adding new one
This commit is contained in:
parent
d013644c65
commit
6ec536e94d
|
@ -1,8 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
|
||||||
# See the file 'doc/COPYING' for copying permission
|
|
||||||
|
|
||||||
# Adds SVN property 'Id' to project files
|
|
||||||
find ../../. -type f -iname "*.py" -exec sed -i s/\$Id.*$/\$Id\$/g '{}' \;
|
|
||||||
find ../../. -type f -iname "*.py" -exec svn propset svn:keywords "Id" '{}' \;
|
|
7
extra/shutils/pyflakes.sh
Executable file
7
extra/shutils/pyflakes.sh
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Copyright (c) 2006-2012 sqlmap developers (http://www.sqlmap.org/)
|
||||||
|
# See the file 'doc/COPYING' for copying permission
|
||||||
|
|
||||||
|
# Runs pyflakes on all python files
|
||||||
|
find . -wholename "./thirdparty" -prune -o -type f -iname "*.py" -exec pyflakes '{}' \;
|
Loading…
Reference in New Issue
Block a user