Bundles are now stored with version number so that new releases do not overwrite previous version bundles

This commit is contained in:
Manish
2020-05-01 16:12:08 +10:00
parent ea5fda4de1
commit 3b7d086a2d
2 changed files with 16 additions and 6 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ var search = {
for (var tag of app.tags)
html += '<li>'+ tag +'</li>\n';
html += '</ul>\n</div>\n<h2 id="downloadButton"><a href="' +
'./bundles/' + app.name + '.xo' +
'./bundles/' + app.name + app.version+ '.xo' +
'">Download</a></h2>\n';
return html;
},