-rw-r--r-- | scripts/builder/frontends/gammaBuilder.py | 3 |
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): | |||
5 | 5 | ||
6 | def name(self): | 6 | def name(self): |
7 | return "/gamma builder" | 7 | return "/gamma builder" |
8 | 8 | ||
9 | def copyStaticResources (self, targetFolder): | 9 | def copyStaticResources (self, targetFolder): |
10 | resourcesToCopy = [ | 10 | resourcesToCopy = [ |
11 | {'folder': 'html', 'source': 'exit_template.html','target': 'exit.html'}, | 11 | # {'folder': 'html', 'source': 'exit_template.html','target': 'exit.html'}, |
12 | {'folder': 'html', 'source': 'exit_template.html','target': 'logout.html'}, | ||
12 | {'folder': 'css', 'source': 'static.css', 'target': 'static.css'} | 13 | {'folder': 'css', 'source': 'static.css', 'target': 'static.css'} |
13 | ] | 14 | ] |
14 | 15 | ||
15 | for resource in resourcesToCopy: | 16 | for resource in resourcesToCopy: |
16 | src = self.absolutePathForSourceFile(resource['folder'], resource['source']) | 17 | src = self.absolutePathForSourceFile(resource['folder'], resource['source']) |
17 | dst = self.absolutePathForTargetFile(targetFolder, '', resource['target']) | 18 | dst = self.absolutePathForTargetFile(targetFolder, '', resource['target']) |