since we delete cloudron on startup, no need to randomize

This commit is contained in:
Girish Ramakrishnan 2015-10-12 16:45:49 -07:00
parent f318285bcd
commit 28e91074a7
1 changed files with 1 additions and 2 deletions

View File

@ -18,11 +18,10 @@ exports = module.exports = {
stripUnreachable: stripUnreachable
};
var gNow = ((new Date()).getTime() / 1000).toFixed();
var gEcosystem = safe.require(path.join(__dirname, '../keys/ci/ecosystem-prod.json'));
function cloudronDomain(filename) {
return 't' + path.basename(filename.replace(/-/g,''), 'test.js') + gNow + '.smartserver.io';
return 't' + path.basename(filename.replace(/-/g,''), 'test.js') + '.smartserver.io';
}
function stripUnreachable(releases) {