summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/builder/frontends/gammaBuilder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/builder/frontends/gammaBuilder.py b/scripts/builder/frontends/gammaBuilder.py
index 35fa68b..a6ecb7b 100644
--- a/scripts/builder/frontends/gammaBuilder.py
+++ b/scripts/builder/frontends/gammaBuilder.py
@@ -5,13 +5,14 @@ class GammaBuilder(FrontendBuilder):
def name(self):
return "/gamma builder"
def copyStaticResources (self, targetFolder):
resourcesToCopy = [
- {'folder': 'html', 'source': 'exit_template.html', 'target': 'exit.html'},
+# {'folder': 'html', 'source': 'exit_template.html', 'target': 'exit.html'},
+ {'folder': 'html', 'source': 'exit_template.html', 'target': 'logout.html'},
{'folder': 'css', 'source': 'static.css', 'target': 'static.css'}
]
for resource in resourcesToCopy:
src = self.absolutePathForSourceFile(resource['folder'], resource['source'])
dst = self.absolutePathForTargetFile(targetFolder, '', resource['target'])