Skip to content

Commit e47c1aa

Browse files
committed
Resolving some more hooking problems
1 parent f81062d commit e47c1aa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

extra/shutils/postcommit-hook.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/bash
22

3-
"""
3+
: '
44
cat > .git/hooks/post-commit << EOF
55
#!/bin/bash
66
77
source ./extra/shutils/postcommit-hook.sh
88
EOF
99
1010
chmod +x .git/hooks/post-commit
11-
"""
11+
'
1212

1313
SETTINGS="../../lib/core/settings.py"
1414

extra/shutils/precommit-hook.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/bash
22

3-
"""
3+
: '
44
cat > .git/hooks/pre-commit << EOF
55
#!/bin/bash
66
77
source ./extra/shutils/precommit-hook.sh
88
EOF
99
1010
chmod +x .git/hooks/pre-commit
11-
"""
11+
'
1212

1313
PROJECT="../../"
1414
SETTINGS="../../lib/core/settings.py"

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.12.9"
22+
VERSION = "1.2.12.10"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
e71aea1aff5751fdcdc97ba63973a603 lib/core/settings.py
52+
7535ff33c85d9b886f9e631dc0158cb9 lib/core/settings.py
5353
a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
52642badbbca4c31a2fcdd754d67a983 lib/core/target.py

0 commit comments

Comments
 (0)