summaryrefslogtreecommitdiff
path: root/.tools/applicator.py
diff options
context:
space:
mode:
Diffstat (limited to '.tools/applicator.py')
-rw-r--r--.tools/applicator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/.tools/applicator.py b/.tools/applicator.py
index aa84ce359..6fa8d6e83 100644
--- a/.tools/applicator.py
+++ b/.tools/applicator.py
@@ -33,7 +33,7 @@ for line in f:
subprocess.call("cd ../../server-code ; wget https://github.com/HerculesWS/Hercules/commit/"+line.replace("\n", "")+".diff", shell=True)
print "Applying patch..."
#subprocess.call("cd ../../server-code ; ls", shell=True)
- subprocess.call("cd ../../server-code ; git apply --ignore-whitespace --exclude=doc/ --exclude=tools/ --exclude=db/ --reject "+line.replace("\n", "")+".diff", shell=True)
+ subprocess.call("cd ../../server-code ; git apply --ignore-whitespace --exclude=doc/ --exclude=tools/ --exclude=db/ --exclude=npc/ --exclude=conf/ --reject "+line.replace("\n", "")+".diff", shell=True)
print "Patch applied"
subprocess.call("cd ../../server-code ; rm "+line.replace("\n", "")+".diff", shell=True)
print "Patch deleted (success)"