Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.

Commit 4a056fe

Browse files
authored
Merge pull request #792 from skidoosh/v3.0/master
Fix for issue #789
2 parents 1e5aa03 + 62f96ef commit 4a056fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

rules/REQUEST-901-INITIALIZATION.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#
2828
SecComponentSignature "OWASP_CRS/3.0.2"
2929

30-
3130
#
3231
# -=[ Default setup values ]=-
3332
#

util/upgrade.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ def upgrade_crs(crs_directory, quiet):
3333

3434
# Do a git 'git pull'
3535
os.chdir(crs_directory)
36-
gitcmd = "git pull origin HEAD --ff-only"
36+
gitcmd = "git pull --ff-only origin HEAD"
3737
try:
38-
git_output = check_output(gitcmd, stderr=STDOUT, shell=True)
38+
git_output = check_output(gitcmd, stderr=STDOUT, shell=True)
3939
returncode = 0
4040
except CalledProcessError as ex:
4141
git_output = ex.output

0 commit comments

Comments
 (0)