aboutsummaryrefslogtreecommitdiffstats
path: root/infrastructure
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure')
-rwxr-xr-xinfrastructure/ace/bin/make8
1 files changed, 4 insertions, 4 deletions
diff --git a/infrastructure/ace/bin/make b/infrastructure/ace/bin/make
index dad11ff..0a39d91 100755
--- a/infrastructure/ace/bin/make
+++ b/infrastructure/ace/bin/make
@@ -263,15 +263,15 @@ def doMake {
def copyFileToEtherpad(fromName: String, toName: String) {
var code = getFile(srcDir+"/"+fromName);
- code = replaceFirstLine(code, "// DO NOT EDIT THIS FILE, edit "+
- "infrastructure/ace/www/"+fromName);
+ code = "// DO NOT EDIT THIS FILE, edit "+
+ "infrastructure/ace/www/"+fromName+"\n"+code;
code = code.replaceAll("""(?<=\n)\s*//\s*%APPJET%:\s*""", "");
putFile(code, "../../etherpad/src/etherpad/collab/ace/"+toName);
}
def copyFileToClientSide(fromName: String, toName: String) {
var code = getFile(srcDir+"/"+fromName);
- code = replaceFirstLine(code, "// DO NOT EDIT THIS FILE, edit "+
- "infrastructure/ace/www/"+fromName);
+ code = "// DO NOT EDIT THIS FILE, edit "+
+ "infrastructure/ace/www/"+fromName+"\n"+code;
code = code.replaceAll("""(?<=\n)\s*//\s*%APPJET%:.*?\n""", "");
code = code.replaceAll("""(?<=\n)\s*//\s*%CLIENT FILE ENDS HERE%[\s\S]*""",
"");